Skip to content

Commit

Permalink
fix: remove left over; assert term
Browse files Browse the repository at this point in the history
  • Loading branch information
sifnoc committed Nov 1, 2023
1 parent ce6c0c6 commit 98a2039
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions backend/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@ mod test {
];

// Send sovlecy proof to contract
round.dispatch_solvency_proof().await?; // .unwrap(), ());
// assert!(result_dispatch_solvency_proof.is_ok());
round.dispatch_solvency_proof().await?;

// After sending transaction of proof of solvency, logs should be updated
solvency_proof_logs = summa_contract
Expand Down Expand Up @@ -228,7 +227,7 @@ mod test {
)
.await?;

assert_eq!(verified, true);
assert!(verified);

drop(anvil);
Ok(())
Expand Down

0 comments on commit 98a2039

Please sign in to comment.