Commit f893e0b1106e8300c50799c654772e7fb7bb04bd

Authored by oleg.stasiv
1 parent 0b753657

Fix bug "valueAddedTaxIncluded of bid should be identical to valueAddedTaxInclud…

…ed of value of tender"
@@ -670,7 +670,7 @@ def test_bid_data_pq(data): @@ -670,7 +670,7 @@ def test_bid_data_pq(data):
670 } 670 }
671 bid.data.requirementResponses.append(requirement) 671 bid.data.requirementResponses.append(requirement)
672 bid.data['status'] = 'draft' 672 bid.data['status'] = 'draft'
673 - bid.data.update(test_bid_value(fake.random_int(min=1, max=int(data['value']['amount'])), True)) 673 + bid.data.update(test_bid_value(fake.random_int(min=1, max=int(data['value']['amount'])), data['value']['valueAddedTaxIncluded']))
674 return bid 674 return bid
675 675
676 676
Please register or login to post a comment