Skip to content

Commit

Permalink
update test balance due to the new claimcompressor deployment cost
Browse files Browse the repository at this point in the history
  • Loading branch information
ARR552 committed Dec 19, 2024
1 parent b32b606 commit a97adcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/autoclaim_l2_l2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func TestAutoClaimL2L2(t *testing.T) {
// Check L2 destination funds
balance, err := opsman2.CheckAccountBalance(ctx, operations.L2, &address)
require.NoError(t, err)
v, _ := big.NewInt(0).SetString("99999998418466000000000", 10)
v, _ := big.NewInt(0).SetString("99999998433970000000000", 10)
t.Log("balance: ", balance)
require.Equal(t, 0, v.Cmp(balance))
// This deposit forces the update of the ger to process the previous ready for claim. It is
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/l2_l2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestL2L2(t *testing.T) {
// Check L2 destination funds
balance, err := opsman2.CheckAccountBalance(ctx, operations.L2, &address)
require.NoError(t, err)
v, _ := big.NewInt(0).SetString("99999999209233000000000", 10)
v, _ := big.NewInt(0).SetString("99999999216985000000000", 10)
t.Log("balance: ", balance)
require.Equal(t, 0, v.Cmp(balance))
// Get the claim data
Expand Down

0 comments on commit a97adcb

Please sign in to comment.