Skip to content

Commit

Permalink
Review Berry verwerken
Browse files Browse the repository at this point in the history
  • Loading branch information
uittenbroekrobbert committed Jun 5, 2024
1 parent 1e13aed commit b66af9c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/site/static/templates/test_task_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@


def test_template_rendering():
task = Task()
task.title = "Test Task"
task.id = 1
task.description = "Test Description"
task = Task(id=1, title="Test Task", description="Test Description", sort_order=1)
result = env.get_template(name="task.jinja").render(task=task)
expected_result = """
<div class="progress_card_container" id="card-1" data-id="1">
Expand Down

0 comments on commit b66af9c

Please sign in to comment.