diff --git a/idhub/tests/test_views.py b/idhub/tests/test_views.py index 67d68c9..a6c66f7 100644 --- a/idhub/tests/test_views.py +++ b/idhub/tests/test_views.py @@ -73,8 +73,7 @@ class AdminDashboardViewTest(TestCase): # Fetch the dashboard view response = self.client.get('/admin/dashboard/') - #import pdb; pdb.set_trace() - events = response.context['events'] + events = response.context['event_list'] # Check that only admin-visible events are included self.assertIn(Event.Types.EV_USR_REGISTERED, [event.type for event in events])