Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ZumZoom committed Jan 31, 2024
1 parent 316b9ed commit ca10155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/LimitOrderProtocol.js
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ describe('LimitOrderProtocol', function () {
});
});

describe('Pause', function() {
describe('Pause', function () {
it('Paused contract should not work', async function () {
const { tokens: { dai, weth }, contracts: { swap }, chainId } = await loadFixture(deployContractsAndInit);

Expand All @@ -2035,7 +2035,7 @@ describe('LimitOrderProtocol', function () {
});

const { r, yParityAndS: vs } = ethers.Signature.from(await signOrder(order, chainId, await swap.getAddress(), addr1));
await expect(swap.fillOrder(order, r, vs, 1, fillWithMakingAmount(1))).to.be.revertedWithCustomError(swap, 'EnforcedPause')
await expect(swap.fillOrder(order, r, vs, 1, fillWithMakingAmount(1))).to.be.revertedWithCustomError(swap, 'EnforcedPause');
});
});
});

0 comments on commit ca10155

Please sign in to comment.