From 9feaec206c24d6e83059a775f486cf0244ef118d Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Thu, 27 Apr 2023 15:39:49 -0400 Subject: [PATCH] Had to update the test to reflect the new attached css --- tests/app/main/views/test_index.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/app/main/views/test_index.py b/tests/app/main/views/test_index.py index 8a48cdb8b..c67fa2f6e 100644 --- a/tests/app/main/views/test_index.py +++ b/tests/app/main/views/test_index.py @@ -233,6 +233,7 @@ def test_css_is_served_from_correct_path(client_request): page.select('link[rel=stylesheet]') ): assert link['href'].startswith([ + 'https://static.example.com/css/styles.css?', 'https://static.example.com/stylesheets/main.css?', 'https://static.example.com/stylesheets/print.css?', ][index])