Skip to content

Commit

Permalink
Merge pull request #6306 from NomicFoundation/fix/update-rerun-after-…
Browse files Browse the repository at this point in the history
…kill

test: fix the update after kill test
  • Loading branch information
kanej authored Feb 17, 2025
2 parents 1315398 + c4ddb87 commit 8d9a32b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions v-next/hardhat-ignition/test/deploy/rerun/rerun-after-kill.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ describe("execution - rerun after kill", function () {
it("should pickup deployment and run contracts to completion", async function () {
const moduleDefinition = buildModule("FooModule", (m) => {
const foo1 = m.contract("Foo", [], { id: "foo1" });
const foo2 = m.contract("Foo", [], { id: "foo2" });
const foo3 = m.contract("Foo", [], { id: "foo3" });
const foo4 = m.contract("Foo", [], { id: "foo4" });
const foo5 = m.contract("Foo", [], { id: "foo5" });
const foo2 = m.contract("Foo", [], { id: "foo2", after: [foo1] });
const foo3 = m.contract("Foo", [], { id: "foo3", after: [foo2] });
const foo4 = m.contract("Foo", [], { id: "foo4", after: [foo3] });
const foo5 = m.contract("Foo", [], { id: "foo5", after: [foo4] });

return {
foo1,
Expand Down

0 comments on commit 8d9a32b

Please sign in to comment.