This commit is contained in:
binarybaron 2024-07-25 20:24:49 +02:00
parent d3fb9656f2
commit ff15d4902a
No known key found for this signature in database
GPG Key ID: 99B75D3E1476A26E

View File

@ -79,7 +79,7 @@ mod test {
}
// Helper function for HashMap
fn assert_has_keys_hashmap(map: &serde_json::Map<String, _>, keys: &[&str]) {
fn assert_has_keys_hashmap(map: &serde_json::Map<String, serde_json::Value>, keys: &[&str]) {
for &key in keys {
assert!(map.contains_key(key), "Key {} is missing", key);
}