From cafe3936a552a91173149861e49a4aa9b0e4369a Mon Sep 17 00:00:00 2001 From: Martin Beckmann Date: Thu, 5 Sep 2024 10:42:57 +0200 Subject: [PATCH] Remove another flaky assertion (#2947) # Description Did not address one of the flaky assertions after @sunce86 [pointed it out](https://github.com/cowprotocol/services/pull/2944#issuecomment-2330853786). --- crates/e2e/tests/e2e/order_cancellation.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/e2e/tests/e2e/order_cancellation.rs b/crates/e2e/tests/e2e/order_cancellation.rs index 220deed476..12e69e1979 100644 --- a/crates/e2e/tests/e2e/order_cancellation.rs +++ b/crates/e2e/tests/e2e/order_cancellation.rs @@ -244,10 +244,6 @@ async fn order_cancellation(web3: Web3) { .status, OrderStatus::Cancelled, ); - assert_eq!( - services.get_order_status(&order_uids[2]).await.unwrap(), - orderbook::dto::order::Status::Cancelled, - ); for uid in &order_uids { let events = crate::database::events_of_order(services.db(), uid).await;