From daceb677f495b5fe66fc41e4b76375365ff6b6cc Mon Sep 17 00:00:00 2001 From: Neal Date: Tue, 12 Dec 2023 10:58:13 -0600 Subject: [PATCH] remove await --- packages/credentials/tests/presentation-exchange.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/credentials/tests/presentation-exchange.spec.ts b/packages/credentials/tests/presentation-exchange.spec.ts index 6a9b49000..bf3082239 100644 --- a/packages/credentials/tests/presentation-exchange.spec.ts +++ b/packages/credentials/tests/presentation-exchange.spec.ts @@ -220,7 +220,7 @@ describe('PresentationExchange', () => { const input = vectors[i].input; const expectedOutput = vectors[i].output.selectedCredentials; - const selectedCreds = await PresentationExchange.selectCredentials({ vcJwts: input.credentialJwts, presentationDefinition: input.presentationDefinition}); + const selectedCreds = PresentationExchange.selectCredentials({ vcJwts: input.credentialJwts, presentationDefinition: input.presentationDefinition}); expect(selectedCreds).to.deep.equals(expectedOutput); }