Skip to content

Commit

Permalink
Fix disruptive test discrepancy after pricing change
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasPius committed Mar 31, 2024
1 parent 3bb191d commit d61e1e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/ordering/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ mod tests {
.fingerprint;

let mut products = robot.list_market_products().await.unwrap();
products.sort_by_key(|product| product.price.monthly.net);
products.sort_by_key(|product| product.price.recurring.net);

if let Some(cheapest) = products.first() {
let order = MarketProductOrder {
Expand Down

0 comments on commit d61e1e5

Please sign in to comment.