Skip to content

Commit ee85747

Browse files
committed
fixup! chore: update snapshots for chainInfo
1 parent 08cc107 commit ee85747

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

Diff for: packages/fast-usdc/test/fast-usdc.contract.test.ts

+5-9
Original file line numberDiff line numberDiff line change
@@ -746,10 +746,10 @@ test.serial('STORY01: advancing happy path for 100 USDC', async t => {
746746
// fulfilled" in the test output.
747747

748748
const { calculateAdvance, calculateSplit } = makeFeeTools(feeConfig);
749-
const advance = calculateAdvance(usdc.make(sent1.tx.amount));
750-
t.log('advancer sent to PoolAccount', advance);
749+
const expectedAdvance = calculateAdvance(usdc.make(sent1.tx.amount));
750+
t.log('advancer sent to PoolAccount', expectedAdvance);
751751
t.deepEqual(inspectBankBridge().at(-1), {
752-
amount: String(advance.value),
752+
amount: String(expectedAdvance.value),
753753
denom: uusdcOnAgoric,
754754
recipient: 'agoric1fakeLCAAddress',
755755
type: 'VBANK_GIVE',
@@ -779,9 +779,9 @@ test.serial('STORY01: advancing happy path for 100 USDC', async t => {
779779
.then(r => r.value),
780780
{
781781
...emptyMetrics,
782-
encumberedBalance: advance,
782+
encumberedBalance: expectedAdvance,
783783
shareWorth: par250,
784-
totalBorrows: advance,
784+
totalBorrows: expectedAdvance,
785785
},
786786
'metrics while advancing',
787787
);
@@ -812,10 +812,6 @@ test.serial('STORY01: advancing happy path for 100 USDC', async t => {
812812
);
813813
});
814814

815-
test.todo(
816-
'PERF: Target: settlement completes in a few minutes (after USDC is minted)',
817-
);
818-
819815
// most likely in exo unit tests
820816
test.todo(
821817
'C21 - Contract MUST log / timestamp each step in the transaction flow',

0 commit comments

Comments
 (0)