From ff15d4902a8653b9fd5d78d646fce1a284e4bede Mon Sep 17 00:00:00 2001 From: binarybaron Date: Thu, 25 Jul 2024 20:24:49 +0200 Subject: [PATCH] fix --- swap/tests/rpc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/tests/rpc.rs b/swap/tests/rpc.rs index 3321f0eb..bd6bffb0 100644 --- a/swap/tests/rpc.rs +++ b/swap/tests/rpc.rs @@ -79,7 +79,7 @@ mod test { } // Helper function for HashMap - fn assert_has_keys_hashmap(map: &serde_json::Map, keys: &[&str]) { + fn assert_has_keys_hashmap(map: &serde_json::Map, keys: &[&str]) { for &key in keys { assert!(map.contains_key(key), "Key {} is missing", key); }