Browse Source

Update Box2.tests.js

gero3 6 years ago
parent
commit
83d89f432f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/unit/src/math/Box2.tests.js

+ 1 - 1
test/unit/src/math/Box2.tests.js

@@ -130,7 +130,7 @@ export default QUnit.module( 'Maths', () => {
 		QUnit.test( "isEmpty", ( assert ) => {
 
 			var a = new Box2( zero2.clone(), zero2.clone() );
-			assert.ok( a.isEmpty(), "Passed!" );
+			assert.ok( ! a.isEmpty(), "Passed!" );
 
 			var a = new Box2( zero2.clone(), one2.clone() );
 			assert.ok( ! a.isEmpty(), "Passed!" );