From 47a1a1314f5e99a0a2ff7029a05bd57a5b9c7b4d Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 27 Jul 2022 16:10:38 +0200 Subject: [PATCH] tests: fix misc test failures (#67724) --- tests/test_cells.py | 9 ++++----- tests/test_public.py | 2 +- tests/test_search.py | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/tests/test_cells.py b/tests/test_cells.py index ab7eca8d..44ced17f 100644 --- a/tests/test_cells.py +++ b/tests/test_cells.py @@ -26,7 +26,6 @@ from combo.data.models import ( ConfigJsonCell, FeedCell, JsonCell, - JsonCellBase, LinkCell, LinkListCell, MenuCell, @@ -76,13 +75,13 @@ def test_media(): class Meta: # to prevent error in Models metaclass as the current module is not # in a registered applicatoin + proxy = True app_label = 'data' - abstract = True cells = [TextCelleWithMedia() for i in range(3)] assert ( force_text(sum((cell.media for cell in cells), Media())) - == '' + == '' ) @@ -1243,7 +1242,7 @@ def test_config_json_cell_validity(settings, context): def test_json_force_async(): - cell = JsonCellBase() + cell = JsonCell() cell.url = 'http://example.net/test-force-async' cell.template_string = '{{json.hello}}' cell.force_async = True @@ -1261,7 +1260,7 @@ def test_json_force_async(): cell.force_async = False assert cell.render({}) == 'world' - cell = JsonCellBase() + cell = JsonCell() cell.url = 'http://example.net/test-force-async-2' cell.template_string = '{{json.hello}}' cell.force_async = False diff --git a/tests/test_public.py b/tests/test_public.py index 28d222bc..f346dc53 100644 --- a/tests/test_public.py +++ b/tests/test_public.py @@ -602,7 +602,7 @@ def test_404(app): with override_settings(DEBUG=True): # check error page provides an hint when debugging resp = app.get('/foobar/', status=404) - assert "can't find the requested page" in resp.text + assert "can't find the requested page" in resp.text # check native django handler is used if all pages are private page.public = False diff --git a/tests/test_search.py b/tests/test_search.py index 7c9a2209..10d2e559 100644 --- a/tests/test_search.py +++ b/tests/test_search.py @@ -1432,7 +1432,7 @@ def test_index_site_num_queries(settings, app): assert IndexedCell.objects.count() == 50 with CaptureQueriesContext(connection) as ctx: index_site() - assert len(ctx.captured_queries) == 225 + assert len(ctx.captured_queries) == 175 SearchCell.objects.create( page=page, placeholder='content', order=0, _search_services={'data': ['search1']}