We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d724d4 commit c4524abCopy full SHA for c4524ab
spec/integration/orders_spec.rb
@@ -65,9 +65,9 @@
65
order = create_order_response.data
66
67
expect(order.id).not_to be_nil
68
- expect(order.mass_g).to eq(1_250_000)
69
- expect(order.price_cents_usd.to_i).to eq(125)
70
- expect(order.patch_fee_cents_usd.to_i).to eq(375)
+ expect(order.mass_g).to eq(5_000_000)
+ expect(order.price_cents_usd.to_i).to eq(500)
+ expect(order.patch_fee_cents_usd).not_to be_empty
71
expect(
72
order.price_cents_usd.to_i + order.patch_fee_cents_usd.to_i
73
).to eq(total_price_cents_usd)
0 commit comments