From 19289b7b86706b17be5ba314009544a7ed14e782 Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Fri, 5 Nov 2021 17:21:50 +0200 Subject: [PATCH] fixed router test --- test/unit/pools/Router.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/unit/pools/Router.test.ts b/test/unit/pools/Router.test.ts index cdff3feb..6783b061 100644 --- a/test/unit/pools/Router.test.ts +++ b/test/unit/pools/Router.test.ts @@ -101,8 +101,6 @@ describe('Router unit test', () => { it('#isFixedPrice - should return true if in fixedPrice list', async () => { expect(await router.isFixedPrice(contracts.fixedRateAddress)).to.equal(true) expect(await router.isFixedPrice(contracts.daiAddress)).to.equal(false) - // Dispenser contract is also a fixed price contract - expect(await router.isFixedPrice(contracts.dispenserAddress)).to.equal(true) }) it('#isPoolTemplate - should return true if in poolTemplates list', async () => { expect(await router.isPoolTemplate(contracts.poolTemplateAddress)).to.equal(true)