From 98a2039877d3a689bbb3c4ff6d449e67b711800a Mon Sep 17 00:00:00 2001 From: sifnoc Date: Wed, 1 Nov 2023 04:14:30 +0000 Subject: [PATCH] fix: remove left over; assert term --- backend/src/tests.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/src/tests.rs b/backend/src/tests.rs index a7532c6c..9cb29b2c 100644 --- a/backend/src/tests.rs +++ b/backend/src/tests.rs @@ -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 @@ -228,7 +227,7 @@ mod test { ) .await?; - assert_eq!(verified, true); + assert!(verified); drop(anvil); Ok(())