Commit d0e434d06b5b00e0f1550eec7dab3d5d9212ec20

Authored by alexdiatlov
Committed by GitHub
2 parents 2435826f c4b1d17f

Merge pull request #184 from ProzorroUKR/dev_prozorro

fix for IsoDurationType
... ... @@ -153,12 +153,8 @@ def create_fake_doc():
153 153
154 154
155 155 def create_fake_IsoDurationType(
156   - years=0, months=0, days=0,
157   - hours=0, minutes=0, seconds=0):
158   - return u"P{}Y{}M{}DT{}H{}M{}S".format(
159   - years, months, days,
160   - hours, minutes, seconds
161   - )
  156 + years=0, months=0, days=0):
  157 + return u"P{}Y{}M{}D".format(years, months, days)
162 158
163 159
164 160 def test_tender_data(params,
... ... @@ -708,10 +704,7 @@ def test_tender_data_framework_agreement(params, submissionMethodDetails, plan_d
708 704 data['agreementDuration'] = create_fake_IsoDurationType(
709 705 years=fake.random_int(min=1, max=3),
710 706 months=fake.random_int(min=1, max=8),
711   - days=fake.random_int(min=1, max=6),
712   - hours=fake.random_int(min=1, max=20),
713   - minutes=fake.random_int(min=1, max=50),
714   - seconds=fake.random_int(min=1, max=50)
  707 + days=fake.random_int(min=1, max=6)
715 708 )
716 709 return data
717 710
... ...
Please register or login to post a comment