diff --git a/core/market/tests/test_negotiations.rs b/core/market/tests/test_negotiations.rs index 01f28bb9a6..4113dca7e1 100644 --- a/core/market/tests/test_negotiations.rs +++ b/core/market/tests/test_negotiations.rs @@ -481,8 +481,6 @@ async fn test_counter_initial_unsubscribed_remote_offer() { .counter_proposal(&demand_id, &proposal0_id, &proposal1, &identity1) .await; - - assert!(result.is_err()); match result.err().unwrap() { ProposalError::Validation(ProposalValidationError::Unsubscribed(id)) => { @@ -534,14 +532,12 @@ async fn test_counter_draft_unsubscribed_remote_offer() { .await .unwrap(); - let proposal1 = sample_demand(); let result = market1 .requestor_engine .counter_proposal(&demand_id, &proposal0_id, &proposal1, &identity1) .await; - assert!(result.is_err()); match result.err().unwrap() { ProposalError::Validation(ProposalValidationError::Unsubscribed(id)) => {