fix: travis failing

This commit is contained in:
Rohit Waghchaure
2021-12-29 00:21:00 +05:30
parent ce2aa767b2
commit fbbf29e829

View File

@@ -43,9 +43,9 @@ def test_record_generator():
for year in range(start, end):
test_records.append({
"doctype": "Fiscal Year",
"year": f"_Test Fiscal Year {year}",
"year_start_date": f"{year}-01-01",
"year_end_date": f"{year}-12-31"
"year": "_Test Fiscal Year {}".format(year),
"year_start_date": "{}-01-01".format(year),
"year_end_date": "{}-12-31".format(year)
})
return test_records