Commit 0ca260670481c99a0de32f8f4c4f818abb1bf0f6

Authored by mykhaly
1 parent a2cb2b61

Insert pseudo id into cancellation reason

@@ -267,6 +267,8 @@ Get Broker Property By Username @@ -267,6 +267,8 @@ Get Broker Property By Username
267 267
268 Підготувати дані про скасування 268 Підготувати дані про скасування
269 ${cancellation_reason}= create_fake_sentence 269 ${cancellation_reason}= create_fake_sentence
  270 + ${cancellation_reason}= field_with_id c ${cancellation_reason}
  271 + ${cancellation_id}= get_id_from_string ${cancellation_reason}
270 ${file_path} ${file_name} ${file_content}= create_fake_doc 272 ${file_path} ${file_name} ${file_content}= create_fake_doc
271 ${doc_id}= get_id_from_string ${file_name} 273 ${doc_id}= get_id_from_string ${file_name}
272 ${document}= Create Dictionary 274 ${document}= Create Dictionary
@@ -277,6 +279,7 @@ Get Broker Property By Username @@ -277,6 +279,7 @@ Get Broker Property By Username
277 ${new_description}= create_fake_sentence 279 ${new_description}= create_fake_sentence
278 ${cancellation_data}= Create Dictionary 280 ${cancellation_data}= Create Dictionary
279 ... cancellation_reason=${cancellation_reason} 281 ... cancellation_reason=${cancellation_reason}
  282 + ... cancellation_id=${cancellation_id}
280 ... document=${document} 283 ... document=${document}
281 ... description=${new_description} 284 ... description=${new_description}
282 ${cancellation_data}= munchify ${cancellation_data} 285 ${cancellation_data}= munchify ${cancellation_data}
@@ -21,6 +21,7 @@ from .initial_data import ( @@ -21,6 +21,7 @@ from .initial_data import (
21 create_fake_doc, 21 create_fake_doc,
22 create_fake_sentence, 22 create_fake_sentence,
23 fake, 23 fake,
  24 + field_with_id,
24 test_bid_data, 25 test_bid_data,
25 test_bid_value, 26 test_bid_value,
26 test_claim_answer_data, 27 test_claim_answer_data,
Please register or login to post a comment