Skip to content

Commit

Permalink
style(test-sell): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Mar 6, 2024
1 parent 89d5c9f commit af17f09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contract/test/test-sell-concert-tickets-contract.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ const alice = async (

const seat = E(zoe).offer(toTrade, proposal, { Price: pmt });
const resultP = E(seat).getOfferResult();
await (expectSuccessfulTrade ? t.notThrowsAsync(resultP) : t.throwsAsync(resultP));
await (expectSuccessfulTrade
? t.notThrowsAsync(resultP)
: t.throwsAsync(resultP));
if (!expectSuccessfulTrade) {
return;
}
Expand Down

0 comments on commit af17f09

Please sign in to comment.