diff --git a/fyrox-math/src/aabb.rs b/fyrox-math/src/aabb.rs index f087b24ca..e2c74bfea 100644 --- a/fyrox-math/src/aabb.rs +++ b/fyrox-math/src/aabb.rs @@ -439,7 +439,7 @@ mod test { assert!(!_box.is_valid()); _box.add_point(Vector3::new(1.0, 1.0, 1.0)); - assert!(!_box.is_valid()); + assert!(_box.is_valid()); _box.add_point(Vector3::new(-1.0, -1.0, -1.0)); assert!(_box.is_valid());