Skip to content

Commit

Permalink
fix: reduce amount of connections on controlled tests
Browse files Browse the repository at this point in the history
  • Loading branch information
renancloudwalk committed Mar 13, 2024
1 parent b8efd4e commit f39a2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_import_offline_snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async fn test_import_offline_snapshot() {
// init snapshot data
let snapshot_json = include_str!("fixtures/block-292973/snapshot.json");
let snapshot: InMemoryPermanentStorageState = serde_json::from_str(snapshot_json).unwrap();
let pg = Postgres::new(docker.postgres_connection_url(), 100usize, 2usize).await.unwrap();
let pg = Postgres::new(docker.postgres_connection_url(), 10usize, 2usize).await.unwrap();
populate_postgres(&pg, snapshot).await;

// init executor and execute
Expand Down

0 comments on commit f39a2df

Please sign in to comment.