From 9c04d318a25567aacdf72483b5b58247db2bfc92 Mon Sep 17 00:00:00 2001 From: AlienTornadosaurusHex <> Date: Thu, 25 May 2023 00:00:26 +0000 Subject: [PATCH] remove only from test Signed-off-by: AlienTornadosaurusHex <> --- test/patch/patch.test.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/patch/patch.test.js b/test/patch/patch.test.js index 605904a..724a8a9 100644 --- a/test/patch/patch.test.js +++ b/test/patch/patch.test.js @@ -177,7 +177,7 @@ describe('Gov Exploit Patch Upgrade Tests', () => { snapshotId = await takeSnapshot() }) - it.only('Should be able to execute the proposal', async () => { + it('Should be able to execute the proposal', async () => { // Load these storage variables for comparison const oldVaultAddr = await governance.userVault() @@ -212,9 +212,7 @@ describe('Gov Exploit Patch Upgrade Tests', () => { await ethers.provider.send('evm_mine', []) - const response = await governance.execute(proposalId) - - console.log(await response.wait()) + await governance.execute(proposalId) const newVaultAddr = await governance.userVault() const newGasCompAddr = await governance.gasCompensationVault()