Fix clippy::useless_conversion (#4384)

This commit is contained in:
Jon Häggblad
2024-02-09 09:37:32 +01:00
committed by GitHub
parent 36e4c181fc
commit aedff7fe30
2 changed files with 4 additions and 5 deletions
Generated
-1
View File
@@ -6203,7 +6203,6 @@ dependencies = [
"bip39",
"bs58 0.4.0",
"cfg-if",
"chrono",
"clap 4.4.7",
"comfy-table",
"cosmrs 0.15.0 (git+https://github.com/jstuczyn/cosmos-rust?branch=nym-temp/all-validator-features)",
@@ -203,10 +203,10 @@ mod test_multiple_send_input_csv {
println!("{:?}", input_csv.rows);
assert_eq!(50_000_000u128, input_csv.rows[0].amount.amount.into());
assert_eq!(50u128, input_csv.rows[1].amount.amount.into());
assert_eq!(50_000_000u128, input_csv.rows[2].amount.amount.into());
assert_eq!(50u128, input_csv.rows[3].amount.amount.into());
assert_eq!(50_000_000u128, input_csv.rows[0].amount.amount);
assert_eq!(50u128, input_csv.rows[1].amount.amount);
assert_eq!(50_000_000u128, input_csv.rows[2].amount.amount);
assert_eq!(50u128, input_csv.rows[3].amount.amount);
assert_eq!("unym", input_csv.rows[0].amount.denom);
assert_eq!("unym", input_csv.rows[1].amount.denom);