mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-25 23:04:17 -05:00
Added spaces around *
This commit is contained in:
parent
4749768734
commit
76392d81fa
1 changed files with 1 additions and 1 deletions
|
@ -78,6 +78,6 @@ mod tests {
|
||||||
let package = Package::new(sender_country, recipient_country, 1500);
|
let package = Package::new(sender_country, recipient_country, 1500);
|
||||||
|
|
||||||
assert_eq!(package.get_fees(cents_per_gram), 4500);
|
assert_eq!(package.get_fees(cents_per_gram), 4500);
|
||||||
assert_eq!(package.get_fees(cents_per_gram*2), 9000);
|
assert_eq!(package.get_fees(cents_per_gram * 2), 9000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue