Update test_tasks_templates.py

This commit is contained in:
Dries Peeters
2025-10-17 11:57:05 +02:00
parent 3c3faf13d4
commit ee3776a72e

View File

@@ -33,7 +33,7 @@ def test_edit_task_page_has_tips(client, app):
db.session.add_all([user, project])
db.session.commit()
task = Task(project_id=project.id, name='Edit Me', status='todo', created_by=user.id, assigned_to=user.id)
task = Task(project_id=project.id, name='Edit Me', created_by=user.id, assigned_to=user.id)
db.session.add(task)
db.session.commit()