Skip to content

Commit 4ce216b

Browse files
committed
fix
1 parent f7d0387 commit 4ce216b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/events/keyboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ suite('Keyboard Events', function() {
182182
test('keyIsDown should return a boolean', function() {
183183
assert.isBoolean(myp5.keyIsDown(65));
184184
});
185-
185+
186186
test('keyIsDown should return true if key is down', function() {
187187
window.dispatchEvent(new KeyboardEvent('keydown', { keyCode: 35 }));
188188
assert.strictEqual(myp5.keyIsDown(35), true);

0 commit comments

Comments
 (0)