diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/shared/settings/Key.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/shared/settings/Key.test.ts b/test/shared/settings/Key.test.ts index 3a1c86e..b8538f8 100644 --- a/test/shared/settings/Key.test.ts +++ b/test/shared/settings/Key.test.ts @@ -80,7 +80,7 @@ describe("Key", () => { it('returns true if the key is a digit', () => { expect(new Key({ key: '0' }).isDigit()).to.be.true; expect(new Key({ key: '9' }).isDigit()).to.be.true; - expect(new Key({ key: '9', shift: true }).isDigit()).to.be.true; + expect(new Key({ key: '9', alt: true }).isDigit()).to.be.false; expect(new Key({ key: 'a' }).isDigit()).to.be.false; expect(new Key({ key: '0' }).isDigit()).to.be.false; |