Commit 5eac4d97446ce17647dcc7a812eb51d0eb4e5835
Merge pull request #67 from Leits/patch-2
Fix question errors
Showing
2 changed files
with
5 additions
and
4 deletions
... | ... | @@ -134,10 +134,10 @@ Library openprocurement_client_helper.py |
134 | 134 | |
135 | 135 | |
136 | 136 | Відповісти на питання |
137 | - [Arguments] ${username} ${tender_uaid} ${question_id} ${answer_data} | |
137 | + [Arguments] ${username} ${tender_uaid} ${question} ${answer_data} | |
138 | 138 | ${tender}= openprocurement_client.Пошук тендера по ідентифікатору ${username} ${tender_uaid} |
139 | 139 | ${tender}= set_access_key ${tender} ${USERS.users['${username}'].access_token} |
140 | - ${answer_data.data.id}= Set Variable ${question_id} | |
140 | + ${answer_data.data.id}= Set Variable ${question.data.id} | |
141 | 141 | ${question_with_answer}= Call Method ${USERS.users['${username}'].client} patch_question ${tender} ${answer_data} |
142 | 142 | Log object data ${question_with_answer} question_with_answer |
143 | 143 | [return] ${question_with_answer} |
... | ... | @@ -523,4 +523,4 @@ Library openprocurement_client_helper.py |
523 | 523 | Set To Dictionary ${qualification.data} id ${tender.data.qualifications[${qualification_num}].id} |
524 | 524 | ${reply}= Call Method ${USERS.users['${username}'].client} patch_qualification ${tender} ${qualification} |
525 | 525 | Log ${reply} |
526 | - [Return] ${reply} | |
\ No newline at end of file | ||
526 | + [Return] ${reply} | ... | ... |
... | ... | @@ -423,7 +423,8 @@ ${question_id} 0 |
423 | 423 | [Tags] ${USERS.users['${provider}'].broker}: Можливість задати запитання |
424 | 424 | ... provider |
425 | 425 | ... ${USERS.users['${provider}'].broker} |
426 | - ${resp}= Викликати для учасника ${provider} Задати питання shouldfail ${TENDER['TENDER_UAID']} ${QUESTIONS[${question_id}]} | |
426 | + ${question}= Підготовка даних для запитання | |
427 | + Викликати для учасника ${provider} Задати питання shouldfail ${TENDER['TENDER_UAID']} ${question} | |
427 | 428 | |
428 | 429 | Можливість подати цінову пропозицію другим учасником |
429 | 430 | [Tags] ${USERS.users['${provider1}'].broker}: Можливість подати цінову пропозицію | ... | ... |
Please
register
or
login
to post a comment