Skip to content

Commit 8385f69

Browse files
committed
cleanup code
1 parent 4b15544 commit 8385f69

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

  • src/openprocurement/tender

src/openprocurement/tender/belowthreshold/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def check_tender_status(request):
254254
tender.status = "unsuccessful"
255255
if tender.contracts and tender.contracts[-1].status == "active":
256256
tender.status = "complete"
257-
if tender.procurementMethodType in ("belowThreshold", "priceQuotation"):
257+
if tender.procurementMethodType == "belowThreshold":
258258
check_ignored_claim(tender)
259259

260260

src/openprocurement/tender/pricequotation/tests/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ class BaseTenderWebTest(BaseCoreWebTest):
2121
relative_to = os.path.dirname(__file__)
2222
initial_data = test_tender_data
2323
initial_status = None
24+
maxDiff = None
25+
2426
initial_bids = None
2527
initial_auth = ("Basic", ("broker", ""))
2628
docservice = False

0 commit comments

Comments
 (0)