Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchTurner committed Feb 7, 2024
1 parent c5689c1 commit 4d9c0c2
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/tests/gas_price.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ use fuel_core::service::{
FuelService,
};
use fuel_core_client::client::{
types::gas_price::{
EstimateGasPrice,
LatestGasPrice,
},
schema::gas_price::EstimateGasPrice,
types::gas_price::LatestGasPrice,
FuelClient,
};

Expand All @@ -30,5 +28,5 @@ async fn estimate_gas_price() {

let EstimateGasPrice { gas_price } =
client.estimate_gas_price(arbitrary_horizon).await.unwrap();
assert_eq!(gas_price, node_config.txpool.min_gas_price);
assert_eq!(u64::from(gas_price), node_config.txpool.min_gas_price);
}

0 comments on commit 4d9c0c2

Please sign in to comment.