Commit ee1464d8c22e80a04865acb7e21206132cc10754

Authored by mykhaly
1 parent 712115a3

Delete test_cancel_tender_data

... ... @@ -555,10 +555,10 @@ Library openprocurement_client_helper.py
555 555 ... [Return] Nothing
556 556 [Arguments] ${username} ${tender_uaid} ${cancellation_reason} ${document} ${new_description}
557 557 ${tender}= openprocurement_client.Пошук тендера по ідентифікатору ${username} ${tender_uaid}
558   - ${data}= test_cancel_tender_data ${cancellation_reason}
559   - Log ${data}
560   - ${cancel_reply}= Call Method ${USERS.users['${username}'].client} create_cancellation ${tender} ${data}
561   - Log ${cancel_reply}
  558 + ${data}= Create dictionary reason=${cancellation_reason}
  559 + ${cancellation_data}= Create dictionary data=${data}
  560 + ${cancellation_data}= munch_dict arg=${cancellation_data}
  561 + ${cancel_reply}= Call Method ${USERS.users['${username}'].client} create_cancellation ${tender} ${cancellation_data}
562 562 ${cancellation_id}= Set variable ${cancel_reply.data.id}
563 563
564 564 ${document_id}= openprocurement_client.Завантажити документацію до запиту на скасування ${username} ${tender_uaid} ${cancellation_id} ${document}
... ...
... ... @@ -237,14 +237,6 @@ def test_claim_answer_data():
237 237 })
238 238
239 239
240   -def test_cancel_tender_data(cancellation_reason):
241   - return munchify({
242   - 'data': {
243   - 'reason': cancellation_reason
244   - }
245   - })
246   -
247   -
248 240 def test_confirm_data(id):
249 241 return munchify({
250 242 "data": {
... ...
... ... @@ -20,7 +20,6 @@ from .initial_data import (
20 20 create_fake_doc,
21 21 create_fake_sentence,
22 22 test_bid_data,
23   - test_cancel_tender_data,
24 23 test_claim_answer_data,
25 24 test_claim_data,
26 25 test_complaint_data,
... ...
Please register or login to post a comment