Commit 84270c5d2b27b6f152ffabba5afec6da791e09db
Committed by
OrysiaDrabych
1 parent
3bf5a86b
Add `test_change_data` to initial_data
Showing
2 changed files
with
14 additions
and
0 deletions
... | ... | @@ -482,3 +482,16 @@ def test_tender_data_competitive_dialogue(params, submissionMethodDetails): |
482 | 482 | data['procuringEntity']['identifier']['legalName_en'] = fake_en.sentence(nb_words=10, variable_nb_words=True) |
483 | 483 | data['procuringEntity']['kind'] = 'general' |
484 | 484 | return data |
485 | + | |
486 | + | |
487 | +def test_change_data(): | |
488 | + return munchify( | |
489 | + { | |
490 | + "data": | |
491 | + { | |
492 | + "rationale": fake.description(), | |
493 | + "rationale_en": fake_en.sentence(nb_words=10, variable_nb_words=True), | |
494 | + "rationale_ru": fake_ru.sentence(nb_words=10, variable_nb_words=True), | |
495 | + "rationaleTypes": fake.rationaleTypes(amount=3) | |
496 | + } | |
497 | + }) | ... | ... |
Please
register
or
login
to post a comment