From 87e40d977c1415864be7f4c22a51fe505cfbd82e Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Fri, 2 Jan 2026 20:01:23 -0500 Subject: [PATCH] deleted redundant assertions from apps.dashboard.tests; removed redundant table code from home.html now that list.html includes it; updated FTs to accomodate the title change to "Dashboard" in home.html --- apps/dashboard/tests.py | 2 -- functional_tests/tests.py | 4 ++-- templates/apps/dashboard/home.html | 9 ++------- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/apps/dashboard/tests.py b/apps/dashboard/tests.py index 9b5bbb0..f309198 100644 --- a/apps/dashboard/tests.py +++ b/apps/dashboard/tests.py @@ -8,7 +8,6 @@ class HomePageTest(TestCase): def test_renders_input_form(self): response = self.client.get('/') - self.assertContains(response, '
') self.assertContains(response, '') self.assertContains(response, ' - To-Do lists + Dashboard -

Your To-Do List

+

Dashboard | Start a new to-do list

{% csrf_token %}
- - {% for item in items %} - - {% endfor %} -
{{ forloop.counter }}. {{ item.text }}
\ No newline at end of file