From 216e7de7b0401db59e470253726f86b0f380323a Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 4 Jul 2021 22:40:34 +0200 Subject: Fix tests an update for newer rust. --- src/item.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/item.rs') diff --git a/src/item.rs b/src/item.rs index 361b327..7c5935d 100644 --- a/src/item.rs +++ b/src/item.rs @@ -165,7 +165,7 @@ fn add_group_to_list_of_groups_allowed() { item.group_allow("test"); match item.data.get("groups_allow") { Some(ItemData::List(v)) => assert_eq!(v.len(), 1), - Some(ItemData::Value(s)) => assert!(false, format!("Expected a list, found value: {}", s)), + Some(ItemData::Value(s)) => assert!(false, "Expected a list, found value: {}", s), None => assert!(false, "List not found!"), }; } -- cgit v1.2.3