Skip to content

Commit

Permalink
fix: remove redundant argument for TASK_DEPLOY before running zksync …
Browse files Browse the repository at this point in the history
…tests
  • Loading branch information
ElvisKrop committed Aug 22, 2023
1 parent 3a9ec81 commit 387ff23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tasks/zk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ subtask(TASK_TEST_SETUP_TEST_ENVIRONMENT).setAction(async (taskArgs, hre, runSup
hre.config.mocha.timeout = 90_000;
hre.config.mocha.slow = 30_000;

await hre.run(TASK_DEPLOY, { nonDeterministicZk: true, ...taskArgs });
} else {
await runSuper(taskArgs);
await hre.run(TASK_DEPLOY, taskArgs);
}

await runSuper(taskArgs);
});

const TASK_VERIFY_ZK_ALL = "verify:verify-zk-all";
Expand Down

0 comments on commit 387ff23

Please sign in to comment.