diff options
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 () => { |