Skip to content

Commit

Permalink
uncomment failing assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
zancas committed Oct 10, 2024
1 parent c1e1614 commit 8436a45
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions libtonode-tests/tests/concrete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,17 +196,18 @@ mod fast {

let transaction_request = TransactionRequest::new(payment).unwrap();

let _proposal = sender.propose_send(transaction_request).await.unwrap();
let proposal = sender.propose_send(transaction_request).await.unwrap();
assert_eq!(proposal.steps().len(), 2usize);
sender
.complete_and_broadcast_stored_proposal()
.await
.unwrap();
let _summaries = sender.transaction_summaries().await;
let summaries = sender.transaction_summaries().await;
// This fails, as we don't scan sends to tex correctly yet
/*assert_eq!(
assert_eq!(
summaries.0[1].outgoing_tx_data()[0].recipient_address,
tex_addr.encode()
);*/
);
increase_height_and_wait_for_client(regtest_manager, faucet, 1)
.await
.unwrap();
Expand Down

0 comments on commit 8436a45

Please sign in to comment.