Skip to content

Commit

Permalink
Added acceleration mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kroman0 committed May 9, 2016
1 parent f2a2c6a commit fde0d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openprocurement/tender/openua/tests/tender.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ def test_patch_tender_ua(self):
self.assertEqual(response.content_type, 'application/json')
self.assertEqual(response.json['errors'][0]["description"], "tenderPeriod should be extended by 7 days")
tenderPeriod_endDate = get_now() + timedelta(days=7, seconds=10)
enquiryPeriod_endDate = tenderPeriod_endDate - timedelta(minutes=10) if SANDBOX_MODE else timedelta(days=10)
enquiryPeriod_endDate = tenderPeriod_endDate - (timedelta(minutes=10) if SANDBOX_MODE else timedelta(days=10))
response = self.app.patch_json('/tenders/{}?acc_token={}'.format(tender['id'], owner_token), {'data':
{
"value": {
Expand Down

0 comments on commit fde0d82

Please sign in to comment.