summaryrefslogtreecommitdiffstats
path: root/core/TESTS/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/TESTS/tests.py')
-rw-r--r--core/TESTS/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py
index 11f3bc4..946d579 100644
--- a/core/TESTS/tests.py
+++ b/core/TESTS/tests.py
@@ -289,13 +289,13 @@ class PageTests(TestCase):
def test_page_site_media_css(self):
# Flat file tests.
- response = self.client.get('/site_media/css/main3.css')
+ response = self.client.get('/site_media/css/trog3.css')
if response.status_code != 200:
self.assertEqual(response.status_code, 302)
if response.status_code != 302:
self.assertEqual(response.status_code, 200)
content = response.content.decode() # need to check it is not just an error page
- ph = r'This text is used by the test system to determine that main3.css loaded correctly'
+ ph = r'This text is used by the test system to determine that trog3.css loaded correctly'
phmatch = re.search(ph, content)
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")