Commit f6ced3366bec4d1db2e8d2b0d810dec74e901f47

Authored by kosaniak
1 parent 7f7dbe89

Increase infimum of bid_amount

... ... @@ -298,7 +298,7 @@ def test_bid_value(max_value_amount):
298 298 return munchify({
299 299 "value": {
300 300 "currency": "UAH",
301   - "amount": round(random.uniform(1, max_value_amount), 2),
  301 + "amount": round(random.uniform((0.95 * max_value_amount), max_value_amount), 2),
302 302 "valueAddedTaxIncluded": True
303 303 }
304 304 })
... ...
Please register or login to post a comment