diff options
author | Matthew Miller <matthew@millerti.me> | 2023-09-28 23:54:21 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-09-28 23:54:21 -0700 |
commit | 113ae8eeb635b36b4ce0be464837d99af7ba1382 (patch) | |
tree | 9ad7eb391d356d30a5d8f5fad67f4a7b95951226 /packages/browser/src/methods/startAuthentication.test.ts | |
parent | f1d27138c7ce44ed2e2f22c19f40beed02cf6cba (diff) |
Fix capitalization issue
Diffstat (limited to 'packages/browser/src/methods/startAuthentication.test.ts')
-rw-r--r-- | packages/browser/src/methods/startAuthentication.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/methods/startAuthentication.test.ts b/packages/browser/src/methods/startAuthentication.test.ts index e535202..fb31dcc 100644 --- a/packages/browser/src/methods/startAuthentication.test.ts +++ b/packages/browser/src/methods/startAuthentication.test.ts @@ -11,7 +11,7 @@ import { utf8StringToBuffer } from '../helpers/utf8StringToBuffer'; import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString'; import { WebAuthnError } from '../helpers/webAuthnError'; import { generateCustomError } from '../helpers/__jest__/generateCustomError'; -import { WebauthnAbortService } from '../helpers/webAuthnAbortService'; +import { WebAuthnAbortService } from '../helpers/webAuthnAbortService'; import { startAuthentication } from './startAuthentication'; @@ -62,7 +62,7 @@ beforeEach(() => { mockSupportsAutofill.mockResolvedValue(true); // Reset the abort service so we get an accurate call count - WebauthnAbortService.cancelCeremony(); + WebAuthnAbortService.cancelCeremony(); }); afterEach(() => { |