Skip to content

Commit

Permalink
Merge pull request #8736 from Agoric/ta/revert-workaround
Browse files Browse the repository at this point in the history
Revert "test(upgrade-test): tolerate running after `a3p:main` zoe upgrade"
  • Loading branch information
mergify[bot] authored Jan 10, 2024
2 parents 8604b01 + 0b3e1a3 commit 82d3548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava';
import { getIncarnation } from './tools/vat-status.js';

test.skip(`verify Zoe vat incarnation`, async t => {
test.failing(`verify Zoe vat incarnation`, async t => {
const incarantion = await getIncarnation('zoe');
t.is(incarantion, 1);
});
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test.before(async () => {
await waitForBlock(5);
});

test.skip(`Ensure Zoe Vat is at 0`, async t => {
test(`Ensure Zoe Vat is at 0`, async t => {
const incarnation = await getIncarnation('zoe');
t.is(incarnation, 0);
});
Expand Down

0 comments on commit 82d3548

Please sign in to comment.