From 6d7a990c907dff4794fc5c6e0cd34c8eb01d762b Mon Sep 17 00:00:00 2001 From: Joren Vandeweyer Date: Thu, 28 Sep 2023 09:57:44 +0200 Subject: [PATCH] remove invalid bearer token that was used in test --- test/integration/handlers/authorize-handler_test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/handlers/authorize-handler_test.js b/test/integration/handlers/authorize-handler_test.js index fbc3a9c..8bc3ae0 100644 --- a/test/integration/handlers/authorize-handler_test.js +++ b/test/integration/handlers/authorize-handler_test.js @@ -635,9 +635,9 @@ describe('AuthorizeHandler integration', function() { grants: ['authorization_code'], redirectUris: ['http://example.com/cb'] }; - const authorizationCode = 'long-authz-code-?'; + const authorizationCode = 'long-authz-code'; const accessTokenDoc = { - accessToken: 'some-access-token-code-?', + accessToken: 'some-access-token-code', client, user, scope, @@ -703,7 +703,7 @@ describe('AuthorizeHandler integration', function() { response .get('location') .should - .equal('http://example.com/cb?code=long-authz-code-%3F&state=fooobarstatebaz'); + .equal('http://example.com/cb?code=long-authz-code&state=fooobarstatebaz'); }); it('should support a custom `authenticateHandler`', async function () {