From 9c89637cbe92d5fef5de53998b934c35aa1d757f Mon Sep 17 00:00:00 2001 From: Alon Lukatch Date: Mon, 11 Nov 2024 14:17:19 +0200 Subject: [PATCH] chore: changing closure Fn requirements on integration test utils --- .../tests/end_to_end_integration_test.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/starknet_integration_tests/tests/end_to_end_integration_test.rs b/crates/starknet_integration_tests/tests/end_to_end_integration_test.rs index c049ba9f6c..7f4c360949 100644 --- a/crates/starknet_integration_tests/tests/end_to_end_integration_test.rs +++ b/crates/starknet_integration_tests/tests/end_to_end_integration_test.rs @@ -76,9 +76,13 @@ async fn test_end_to_end_integration(tx_generator: MultiAccountTransactionGenera info!("Running integration test simulator."); +<<<<<<< HEAD let send_rpc_tx_fn = &mut |rpc_tx| integration_test_setup.add_tx_http_client.assert_add_tx_success(rpc_tx); +======= + let send_rpc_tx_fn = &mut |rpc_tx| http_test_client.assert_add_tx_success(rpc_tx); +>>>>>>> d24924dfe (chore: changing closure Fn requirements on integration test utils) let n_txs = 50; info!("Sending {n_txs} txs."); run_transaction_generator_test_scenario(tx_generator, n_txs, send_rpc_tx_fn).await;