diff options
author | Matthew Miller <matthew@millerti.me> | 2024-02-22 21:37:38 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2024-02-22 21:37:38 -0800 |
commit | 64b7d91d97874cdf7548a3a3adfda6dd7be0b779 (patch) | |
tree | 2bcf28d390dd944d17cc7da0978be8b94623722f /packages/server/src/authentication/generateAuthenticationOptions.test.ts | |
parent | b11b4a2aec5fd8a202019cb117bc0d3d1f7f260f (diff) |
Rename isoBase64URL.isBase64url to isBase64URL
Diffstat (limited to 'packages/server/src/authentication/generateAuthenticationOptions.test.ts')
-rw-r--r-- | packages/server/src/authentication/generateAuthenticationOptions.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/authentication/generateAuthenticationOptions.test.ts b/packages/server/src/authentication/generateAuthenticationOptions.test.ts index 8d55580..7acb250 100644 --- a/packages/server/src/authentication/generateAuthenticationOptions.test.ts +++ b/packages/server/src/authentication/generateAuthenticationOptions.test.ts @@ -129,7 +129,7 @@ Deno.test('should generate a challenge if one is not provided', async () => { // Assert basic properties of the challenge assert(options.challenge.length >= 16); - assert(isoBase64URL.isBase64url(options.challenge)); + assert(isoBase64URL.isBase64URL(options.challenge)); }); Deno.test('should treat string challenges as UTF-8 strings', async () => { |