We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb1f73 commit 132a244Copy full SHA for 132a244
1 file changed
crates/geo_filters/tests/public_api.rs
@@ -16,7 +16,7 @@ fn readme() {
16
c2.push(3);
17
18
let estimated_size = c1.size_with_sketch(&c2);
19
- assert!(estimated_size >= 3.0_f32 * 0.9 && estimated_size <= 3.0_f32 * 1.1);
+ assert!((3.0_f32 * 0.9..=3.0_f32 * 1.1).contains(&estimated_size));
20
}
21
22
#[test]
0 commit comments