test: fix relative_time_filters ui test
This commit is contained in:
parent
aecc43fcd5
commit
2b2f7a7d93
1 changed files with 2 additions and 2 deletions
|
|
@ -41,12 +41,12 @@ def create_todo_records():
|
|||
|
||||
frappe.get_doc({
|
||||
"doctype": "ToDo",
|
||||
"date": add_to_date(now(), days=3),
|
||||
"date": add_to_date(now(), days=7),
|
||||
"description": "this is first todo"
|
||||
}).insert()
|
||||
frappe.get_doc({
|
||||
"doctype": "ToDo",
|
||||
"date": add_to_date(now(), days=-3),
|
||||
"date": add_to_date(now(), days=-7),
|
||||
"description": "this is second todo"
|
||||
}).insert()
|
||||
frappe.get_doc({
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue