Skip to content

Commit

Permalink
Merge pull request #1171 from starwed/fix-collision-test-typo
Browse files Browse the repository at this point in the history
Fix typo and slightly improve comment in collision.js unit test
  • Loading branch information
starwed authored Jan 21, 2018
2 parents 08a59c7 + 037743a commit 23bc903
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/unit/spatial/collision.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,12 @@
.attr({x: 0, y: 0, w: 2, h: 2});
var results = e1.hit('2D');
_.strictEqual(results.length, 1, "exactly one collision");
_.strictEqual(results[0].type, "MBR", "expecdted MBR collision type");
_.strictEqual(results[0].obj[0], e2[0], "Expected collision with e2");
_.strictEqual(results[0].type, "MBR", "expected MBR collision type");
_.strictEqual(results[0].obj[0], e2[0], "expected collision with e2");

// Move e2 such that it should be returned by the broadphase search, but should not be considered a hit
// Move e2 such that it should be returned by the broadphase search
// (i.e. it's in the same cell of the spatial hashmap)
// but doesn't actually overlap e1's MBR
e2.x=3;
var newResults = e1.hit('2D');
_.ok(!newResults, 0, "No collisions");
Expand Down

0 comments on commit 23bc903

Please sign in to comment.