Skip to content

Commit

Permalink
test: repair broken test of upgrade
Browse files Browse the repository at this point in the history
There was a bug in the part of the test that was attempting to run a
bunch of scenarios across the upgrade. Rather than resuming each run
after the upgrade, it was running the whole scenario from scratch
after the upgrade.
  • Loading branch information
Chris-Hibbert authored and mhofman committed Feb 8, 2024
1 parent cc9ab44 commit 25221c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zoe/test/swingsetTests/zoe/test-zoe-upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,6 @@ test('zoe vat upgrade trauma', async t => {
// Verify completion of each paused flow.
for (const { result, remainingSteps } of pausedFlows) {
const [beforeStepName] = remainingSteps[0];
await doSteps(`resumed-${beforeStepName}`, flow, result);
await doSteps(`resumed-${beforeStepName}`, remainingSteps, result);
}
});

0 comments on commit 25221c0

Please sign in to comment.