Correct changeset and remove unused await

Signed-off-by: Andy Caruso <macaruso@gmail.com>
This commit is contained in:
Andy Caruso
2022-03-25 09:08:37 -07:00
committed by blam
parent 4dc6aafca7
commit ab93c04c67
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -2,7 +2,6 @@
'@backstage/backend-common': patch
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-auth-node': patch
'@backstage/plugin-permission-node': patch
---
Update to `jose` 4.6.0
@@ -134,7 +134,7 @@ describe('ServerTokenManager', () => {
it('should throw for server tokens created using a noop TokenManager', async () => {
const noopTokenManager = ServerTokenManager.noop();
const tokenManager = await ServerTokenManager.fromConfig(
const tokenManager = ServerTokenManager.fromConfig(
new ConfigReader({
backend: { auth: { keys: [{ secret: 'a1b2c3' }] } },
}),