From 39bd8e5a25d3d10945f3dab64b96009ddbaf7c53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 30 Dec 2020 14:53:23 +0100 Subject: [PATCH] tests: adapt static dirs test to work before css files have been built (##49776) --- tests/test_rootdirectory.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_rootdirectory.py b/tests/test_rootdirectory.py index 5b620a735..42713c003 100644 --- a/tests/test_rootdirectory.py +++ b/tests/test_rootdirectory.py @@ -168,9 +168,7 @@ def test_categories_page(): def test_static_directories(): - assert get_app(pub).get('/static/css/wcs.css') assert get_app(pub).get('/static/images/feed-icon-10x10.png') - assert get_app(pub).get('/static/css/qommon.css') assert get_app(pub).get('/static/css/gadjo.css') assert get_app(pub).get('/static/xstatic/jquery.js') assert get_app(pub).get('/static/xstatic/jquery-ui.js')