Skip to content

Commit d22bea0

Browse files
committed
test: remove unused default value
1 parent 26888a7 commit d22bea0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

crates/tap-agent/src/agent/sender_account.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,6 @@ pub mod tests {
14641464
let (sender_account, _, prefix, _) = create_sender_account()
14651465
.pgpool(pgpool)
14661466
.initial_allocation(vec![ALLOCATION_ID_0].into_iter().collect())
1467-
.max_amount_willing_to_lose_grt(TRIGGER_VALUE)
14681467
.escrow_subgraph_endpoint(&mock_escrow_subgraph.uri())
14691468
.call()
14701469
.await;
@@ -1507,11 +1506,8 @@ pub mod tests {
15071506
.await
15081507
.unwrap();
15091508

1510-
let (sender_account, _notify, _, _) = create_sender_account()
1511-
.pgpool(pgpool.clone())
1512-
.max_amount_willing_to_lose_grt(TRIGGER_VALUE)
1513-
.call()
1514-
.await;
1509+
let (sender_account, _notify, _, _) =
1510+
create_sender_account().pgpool(pgpool.clone()).call().await;
15151511

15161512
let deny = call!(sender_account, SenderAccountMessage::GetDeny).unwrap();
15171513
assert!(deny);

0 commit comments

Comments
 (0)