Skip to content

Commit

Permalink
fix: use correct new mia votes
Browse files Browse the repository at this point in the history
  • Loading branch information
friedger committed Apr 6, 2024
1 parent 262ff14 commit 04a3dad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/proposals/ccip021-extend-sunset-period-2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,9 @@ Clarinet.test({
stacked: types.uint(500),
});
assertEquals(ccip021ExtendDirectExecuteSunsetPeriod.getVoterInfo(user1Id).result.expectSome().expectTuple(), {
mia: types.uint(441),
mia: types.uint(445),
nyc: types.uint(500),
total: types.uint(941),
total: types.uint(945),
vote: types.bool(false),
});

Expand All @@ -553,9 +553,9 @@ Clarinet.test({

// overall totals
assertEquals(ccip021ExtendDirectExecuteSunsetPeriod.getVoteTotals().result.expectSome().expectTuple(), {
noTotal: types.uint(470),
noTotal: types.uint(472),
noVotes: types.uint(1),
yesTotal: types.uint(941),
yesTotal: types.uint(945),
yesVotes: types.uint(1),
});
// user 1
Expand All @@ -564,9 +564,9 @@ Clarinet.test({
stacked: types.uint(500),
});
assertEquals(ccip021ExtendDirectExecuteSunsetPeriod.getVoterInfo(user1Id).result.expectSome().expectTuple(), {
mia: types.uint(441),
mia: types.uint(445),
nyc: types.uint(500),
total: types.uint(941),
total: types.uint(945),
vote: types.bool(true),
});
// user 2
Expand Down

0 comments on commit 04a3dad

Please sign in to comment.