Added spaces around *

This commit is contained in:
Duchoud Nicolas 2022-10-04 11:43:23 +02:00 committed by GitHub
parent 4749768734
commit 76392d81fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -78,6 +78,6 @@ mod tests {
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*2), 9000);
assert_eq!(package.get_fees(cents_per_gram * 2), 9000);
}
}