Skip to content

Commit

Permalink
remove await
Browse files Browse the repository at this point in the history
  • Loading branch information
nitro-neal committed Dec 12, 2023
1 parent 52fc0f6 commit daceb67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/credentials/tests/presentation-exchange.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit daceb67

Please sign in to comment.