Skip to content

Commit

Permalink
branches missmatch fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vmaksymiv committed Oct 4, 2016
1 parent 7f0fb34 commit a0e9dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openprocurement/contracting/api/tests/change.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_no_items_contract_change(self):
self.assertEqual(change['status'], 'pending')

response = self.app.patch_json('/contracts/{}/changes/{}?acc_token={}'.format(contract['id'], change['id'], token),
{'data': {'status': 'active'}})
{'data': {'status': 'active', 'dateSigned': get_now().isoformat()}})
self.assertEqual(response.status, '200 OK')
self.assertEqual(response.json['data']['status'], 'active')

Expand Down

0 comments on commit a0e9dd3

Please sign in to comment.