Merge pull request #4 from achester88/main

Added Code to Show two decimals places for Price/ticket ratio
This commit is contained in:
Mahad Kalam 2024-08-07 21:02:56 +01:00 committed by GitHub
commit a2d385e5dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ pub fn format_item_diff(
},
if let Some(real_price) = real_price {
format!(
" _(${real_price} - ${}/hr)_",
" _(${real_price} - ${:.2}/hr)_",
(*real_price as f32) / (new.price as f32)
)
} else {
@ -285,7 +285,7 @@ mod diff_tests {
Some(
indoc! {"
*Name:* Test
*Price:* 1 2 🔼 _($50 - $25/hr)_"}
*Price:* 1 2 🔼 _($50 - $25.00/hr)_"}
.into()
)
);