Skip to content

Commit

Permalink
Revert test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
m158261 committed Oct 20, 2023
1 parent 85a1362 commit 5ed4103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/commands/tests/src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ describe('@lumino/commands', () => {
ctrlKey: true
})
);
expect(count).to.equal(1);
expect(count).to.equal(0);
// User presses `ctrl` again - this should not break the sequence.
elem.dispatchEvent(
new KeyboardEvent('keydown', {
Expand Down Expand Up @@ -1220,7 +1220,7 @@ describe('@lumino/commands', () => {
elem.dispatchEvent(eventShift);
expect(count).to.equal(0);
elem.dispatchEvent(eventK);
expect(count).to.equal(1);
expect(count).to.equal(0);
elem.dispatchEvent(eventCtrl);
expect(count).to.equal(0);
elem.dispatchEvent(eventL);
Expand Down

0 comments on commit 5ed4103

Please sign in to comment.