Skip to content

Commit

Permalink
Merge pull request madrobby#71 from smdern/master
Browse files Browse the repository at this point in the history
use !== vs != in test
  • Loading branch information
madrobby committed Jun 10, 2013
2 parents ddcb72e + 2fad364 commit 6cb5479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/keymaster.html
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ <h1>Keymaster unit tests</h1>
var otherKeys = key.getPressedKeyCodes();
t.assertTrue(pressedKeys.indexOf(65) >= 0);
t.assertTrue(pressedKeys.indexOf(16) >= 0);
t.assertTrue(pressedKeys != otherKeys);
t.assertTrue(pressedKeys !== otherKeys);
keyup(65); keyup(KEYS.shift);
},

Expand Down

0 comments on commit 6cb5479

Please sign in to comment.