Skip to content

Commit

Permalink
update text, #918
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Apr 22, 2019
1 parent acb61bc commit fcc2f2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/accessibility/KeyStateTrackerTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ define( require => {

// KeyStateTracker should correctly update when modifier keys like "shift" are attached to the event - if shift
// is down on keyUpUpdate, shift should be considered down
assert.ok( testTracker.isKeyDown( shiftKeyEvent.domEvent.keyCode ), 'shift key should not be down in tracker just because of tab up with shift key code' );
assert.ok( testTracker.shiftKeyDown, 'shift key should not be down in tracker getter' );
assert.ok( testTracker.isKeyDown( shiftKeyEvent.domEvent.keyCode ), 'shift key should update from modifier' );
assert.ok( testTracker.shiftKeyDown, 'shift key should update from modifier getter' );
} );


Expand Down

0 comments on commit fcc2f2a

Please sign in to comment.