Skip to content

Commit 7ed028d

Browse files
committed
Test didn't quite do what I thought it should.
1 parent ec29d0c commit 7ed028d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/lib.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,6 @@ mod tests {
386386
}
387387

388388
#[test]
389-
#[should_panic]
390389
fn test_search_invalid_attrs(){
391390

392391
println!("Testing search with invalid attrs");
@@ -398,4 +397,14 @@ mod tests {
398397

399398
}
400399

400+
for result in search_res {
401+
println!("attrs search result: {:?}", result);
402+
for (key, value) in result {
403+
println!("- key: {:?}", key);
404+
for res_val in value {
405+
println!("- - res_val: {:?}", res_val);
406+
}
407+
}
408+
}
409+
401410
}

0 commit comments

Comments
 (0)