@@ -746,10 +746,10 @@ test.serial('STORY01: advancing happy path for 100 USDC', async t => {
746
746
// fulfilled" in the test output.
747
747
748
748
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 ) ;
751
751
t . deepEqual ( inspectBankBridge ( ) . at ( - 1 ) , {
752
- amount : String ( advance . value ) ,
752
+ amount : String ( expectedAdvance . value ) ,
753
753
denom : uusdcOnAgoric ,
754
754
recipient : 'agoric1fakeLCAAddress' ,
755
755
type : 'VBANK_GIVE' ,
@@ -779,9 +779,9 @@ test.serial('STORY01: advancing happy path for 100 USDC', async t => {
779
779
. then ( r => r . value ) ,
780
780
{
781
781
...emptyMetrics ,
782
- encumberedBalance : advance ,
782
+ encumberedBalance : expectedAdvance ,
783
783
shareWorth : par250 ,
784
- totalBorrows : advance ,
784
+ totalBorrows : expectedAdvance ,
785
785
} ,
786
786
'metrics while advancing' ,
787
787
) ;
@@ -812,10 +812,6 @@ test.serial('STORY01: advancing happy path for 100 USDC', async t => {
812
812
) ;
813
813
} ) ;
814
814
815
- test . todo (
816
- 'PERF: Target: settlement completes in a few minutes (after USDC is minted)' ,
817
- ) ;
818
-
819
815
// most likely in exo unit tests
820
816
test . todo (
821
817
'C21 - Contract MUST log / timestamp each step in the transaction flow' ,
0 commit comments