Skip to content

Commit c4524ab

Browse files
committed
order spec
1 parent 4d724d4 commit c4524ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/integration/orders_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
order = create_order_response.data
6666

6767
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)
68+
expect(order.mass_g).to eq(5_000_000)
69+
expect(order.price_cents_usd.to_i).to eq(500)
70+
expect(order.patch_fee_cents_usd).not_to be_empty
7171
expect(
7272
order.price_cents_usd.to_i + order.patch_fee_cents_usd.to_i
7373
).to eq(total_price_cents_usd)

0 commit comments

Comments
 (0)