fix(structs3): Small adjustment of variable name

Co-authored-by: Jannek <squar@informatik.uni-hamburg.de>
This commit is contained in:
Jannek Squar 2020-09-19 21:22:56 +02:00 committed by GitHub
parent 0f16463794
commit 114b54cbdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ impl Package {
// Something goes here...
}
fn get_fees(&self, cents_per_kg: i32) -> ??? {
// Something goes here... (beware of grams to kg conversion)
fn get_fees(&self, cents_per_gram: i32) -> ??? {
// Something goes here...
}
}
@ -62,10 +62,10 @@ mod tests {
let sender_country = String::from("Spain");
let recipient_country = String::from("Spain");
let cents_per_kg = ???;
let cents_per_gram = ???;
let package = Package::new(sender_country, recipient_country, 1500);
assert_eq!(package.get_fees(cents_per_kg), 4500);
assert_eq!(package.get_fees(cents_per_gram), 4500);
}
}