Skip to content

Commit

Permalink
fix unit test due to 9d1c862
Browse files Browse the repository at this point in the history
  • Loading branch information
oberhamsi committed Feb 1, 2012
1 parent 6bb2b7e commit 7d68379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sprite.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ test('SpriteCollisions', function() {
b.radius = 1;
ok(!gamejs.sprite.collideCircle(a, b));

a.radius = 6;
b.radius = 6;
a.radius = 7;
b.radius = 8;
ok(gamejs.sprite.collideCircle(a, b));

a.rect = new gamejs.Rect([0,0], [5,5]);
Expand Down

0 comments on commit 7d68379

Please sign in to comment.