diff --git a/project/tests/test_view_requests.py b/project/tests/test_view_requests.py index fd9357fc..3f3dcc52 100644 --- a/project/tests/test_view_requests.py +++ b/project/tests/test_view_requests.py @@ -38,7 +38,7 @@ def test_default(self): 'options_order_by': RequestsView().options_order_by, 'options_order_dir': RequestsView().options_order_dir, }, context)) - self.assertQuerysetEqual(context['options_paths'], RequestsView()._get_paths()) + self.assertQuerySetEqual(context['options_paths'], RequestsView()._get_paths()) self.assertNotIn('path', context) self.assertIn('results', context) @@ -60,7 +60,7 @@ def test_get(self): 'options_order_by': RequestsView().options_order_by, 'options_order_dir': RequestsView().options_order_dir, }, context)) - self.assertQuerysetEqual(context['options_paths'], RequestsView()._get_paths()) + self.assertQuerySetEqual(context['options_paths'], RequestsView()._get_paths()) self.assertIn('results', context) def test_post(self): @@ -74,7 +74,7 @@ def test_post(self): 'overalltime': {'typ': 'TimeSpentOnQueriesFilter', 'value': 100, 'str': 'DB Time >= 100'} }, }, context)) - self.assertQuerysetEqual(context['options_paths'], RequestsView()._get_paths()) + self.assertQuerySetEqual(context['options_paths'], RequestsView()._get_paths()) self.assertIn('results', context)