Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Feb 12, 2024
1 parent 33a025b commit f0c04ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_order_rewards_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_order_rewards_transformation(self):
"protocol_fee_native_price": 1.0,
"quote_sell_amount": "10000000000000000",
"quote_buy_amount": "1000",
"quote_gas_cost": 5000000000000000,
"quote_gas_cost": "5000000000000000",
"quote_sell_token_price": 1.0,
},
},
Expand All @@ -64,7 +64,7 @@ def test_order_rewards_transformation(self):
"protocol_fee_native_price": 0.1,
"quote_sell_amount": "2000000000000000",
"quote_buy_amount": "2000",
"quote_gas_cost": 6000000000000000,
"quote_gas_cost": "6000000000000000",
"quote_sell_token_price": 250000000,
},
},
Expand All @@ -82,7 +82,7 @@ def test_order_rewards_transformation(self):
"protocol_fee_native_price": 0.0,
"quote_sell_amount": "35000",
"quote_buy_amount": "10",
"quote_gas_cost": 12000000000000000,
"quote_gas_cost": "12000000000000000",
"quote_sell_token_price": 100000000000000.0,
},
},
Expand Down

0 comments on commit f0c04ff

Please sign in to comment.