From 35cff74d132dcfad0aaea70d71a87b8466e9afea Mon Sep 17 00:00:00 2001 From: Travis Vachon Date: Wed, 31 May 2023 17:13:28 -0700 Subject: [PATCH] fix: remove `Customer.get` check from `access/authorize` test I don't think a `Customer.get` should return a customer if we haven't provisioned anything for them, so remove that check from this test --- packages/upload-api/test/access-authorize.js | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/packages/upload-api/test/access-authorize.js b/packages/upload-api/test/access-authorize.js index 55b4292da..9b30281fa 100644 --- a/packages/upload-api/test/access-authorize.js +++ b/packages/upload-api/test/access-authorize.js @@ -53,23 +53,6 @@ export const test = { }, }, ]) - - const customer = await Customer.get - .invoke({ - issuer: service, - audience: service, - with: service.did(), - nb: { - customer: account.did(), - }, - }) - .execute(connection) - - assert.deepEqual( - customer.out.ok?.customer?.did, - account.did(), - 'account is a customer' - ) }, 'should validate have delegation in the email url': async (