Commit 6a28fff604c19dd5cef44dc77be9605a5b031fc3

Authored by Leits
1 parent 737d2eb8

fake integer in bid for multilot

... ... @@ -559,7 +559,7 @@ def test_lots_bid_data():
559 559 {
560 560 "value": {
561 561 "currency": "UAH",
562   - "amount": 1000 + fake.pyfloat(left_digits=3, right_digits=0, positive=True),
  562 + "amount": fake.random_int(max=1999),
563 563 "valueAddedTaxIncluded": "true"
564 564 },
565 565 "relatedLot": "3c8f387879de4c38957402dbdb8b31af",
... ... @@ -568,7 +568,7 @@ def test_lots_bid_data():
568 568 {
569 569 "value": {
570 570 "currency": "UAH",
571   - "amount": 1000 + fake.pyfloat(left_digits=3, right_digits=0, positive=True),
  571 + "amount": fake.random_int(max=1999),
572 572 "valueAddedTaxIncluded": "true"
573 573 },
574 574 "relatedLot": "bcac8d2ceb5f4227b841a2211f5cb646",
... ...
Please register or login to post a comment