From 49e390dd5e35352903d49309ef19236f3d52bdd7 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Tue, 13 Aug 2024 15:29:19 -0400 Subject: [PATCH] Using rows so it passes the test --- tests/app/main/views/test_dashboard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/app/main/views/test_dashboard.py b/tests/app/main/views/test_dashboard.py index 27a78e2d3..37dbdf831 100644 --- a/tests/app/main/views/test_dashboard.py +++ b/tests/app/main/views/test_dashboard.py @@ -1928,4 +1928,6 @@ def test_service_dashboard_shows_batched_jobs( rows = job_table_body.find_all("tbody")[0].find_all("tr") + assert len(rows) == 0 + assert job_table_body is not None