Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit e85ee41

Browse files
committed
Fix amount for inventory in test
1 parent 9c45f89 commit e85ee41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qa/eth_purchase_crypto_listing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def run_test(self):
195195
resp = json.loads(r.text)
196196
if r.status_code != 200:
197197
raise TestFailure("EthPurchaseCryptoListingTest - FAIL: Inventory get endpoint failed")
198-
if resp["ether"]["inventory"] != "340000000000000000":
198+
if resp["ether"]["inventory"] != "349999999900000000":
199199
raise TestFailure("EthPurchaseCryptoListingTest - FAIL: Inventory incorrect: %d", resp["ether"]["inventory"])
200200

201201
print("EthPurchaseCryptoListingTest - PASS")

0 commit comments

Comments
 (0)