Showing
3 changed files
with
4 additions
and
13 deletions
... | ... | @@ -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": { | ... | ... |
Please
register
or
login
to post a comment