mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-15 03:01:22 +00:00
fix: travis failing
This commit is contained in:
@@ -43,9 +43,9 @@ def test_record_generator():
|
|||||||
for year in range(start, end):
|
for year in range(start, end):
|
||||||
test_records.append({
|
test_records.append({
|
||||||
"doctype": "Fiscal Year",
|
"doctype": "Fiscal Year",
|
||||||
"year": f"_Test Fiscal Year {year}",
|
"year": "_Test Fiscal Year {}".format(year),
|
||||||
"year_start_date": f"{year}-01-01",
|
"year_start_date": "{}-01-01".format(year),
|
||||||
"year_end_date": f"{year}-12-31"
|
"year_end_date": "{}-12-31".format(year)
|
||||||
})
|
})
|
||||||
|
|
||||||
return test_records
|
return test_records
|
||||||
|
|||||||
Reference in New Issue
Block a user