Skip to content

Commit

Permalink
Clean up small things
Browse files Browse the repository at this point in the history
  • Loading branch information
xgreenx committed Nov 17, 2024
1 parent e5829d2 commit 0c93efe
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/e2e-test-client/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl Default for SuiteConfig {
fn default() -> Self {
Self {
endpoint: "http://localhost:4000".to_string(),
wallet_sync_timeout: SYNC_TIMEOUT.checked_mul(2).unwrap(),
wallet_sync_timeout: SYNC_TIMEOUT,
full_test: false,
coinbase_contract_id: ContractId::from_str(
"0x7777777777777777777777777777777777777777777777777777777777777777",
Expand Down
2 changes: 1 addition & 1 deletion bin/e2e-test-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use std::{
};

pub const CONFIG_FILE_KEY: &str = "FUEL_CORE_E2E_CONFIG";
pub const SYNC_TIMEOUT: Duration = Duration::from_secs(10);
pub const SYNC_TIMEOUT: Duration = Duration::from_secs(20);

pub mod config;
pub mod test_context;
Expand Down
1 change: 0 additions & 1 deletion tests/tests/coins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ mod coin {
)
.await
.unwrap();
tracing::info!("coins_per_asset: {:?}", coins_per_asset);
assert_eq!(coins_per_asset.len(), 2);
assert_eq!(coins_per_asset[0].len(), 1);
assert!(coins_per_asset[0].amount() >= 1);
Expand Down

0 comments on commit 0c93efe

Please sign in to comment.