Update test_api_tasks.py

This commit is contained in:
shamoon 2025-02-14 15:54:56 -08:00
parent a0aa78c788
commit 7170ac31b7

View File

@ -130,7 +130,7 @@ class TestTasks(DirectoriesMixin, APITestCase):
)
self.assertEqual(response.status_code, status.HTTP_200_OK)
response = self.client.get(self.ENDPOINT)
response = self.client.get(self.ENDPOINT + "?acknowledged=false")
self.assertEqual(len(response.data), 0)
def test_tasks_owner_aware(self):