Skip to content

Commit

Permalink
Merge pull request #206 from bitfinity-network/fix_flacky_test
Browse files Browse the repository at this point in the history
Fix failing test
  • Loading branch information
ufoscout authored Nov 25, 2024
2 parents f544ab1 + d8bc149 commit 2256faa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/evm-block-extractor/tests/tests/block_extractor_it.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ use crate::test_with_clients;
#[tokio::test]
async fn test_extractor_collect_blocks() {
test_with_clients(|db_client| async move {
db_client.init(None, false).await.unwrap();
db_client.init(None, true).await.unwrap();

let rpc_url = "https://testnet.bitfinity.network".to_string();
let rpc_url =
"https://block-extractor-testnet-1052151659755.europe-west9.run.app".to_string();
let evm_client = Arc::new(EthJsonRpcClient::new(ReqwestClient::new(rpc_url)));

let request_time_out_secs = 10;
Expand Down

0 comments on commit 2256faa

Please sign in to comment.