summaryrefslogtreecommitdiffstats
path: root/core/TESTS/tests.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-01-16 19:52:05 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-01-16 19:52:05 +0000
commit1b70ccea3e782b171560e997499c19015e8b5980 (patch)
tree2ba4bc73b0f6c6ac2bfa8079485194592cd25344 /core/TESTS/tests.py
parent822965ebe5170fac7946ce0fefa442aeb001d1aa (diff)
downloadtroggle-1b70ccea3e782b171560e997499c19015e8b5980.tar.gz
troggle-1b70ccea3e782b171560e997499c19015e8b5980.tar.bz2
troggle-1b70ccea3e782b171560e997499c19015e8b5980.zip
consistent tests with logbooks junk removal
Diffstat (limited to 'core/TESTS/tests.py')
-rw-r--r--core/TESTS/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py
index fa539d9..e74a11b 100644
--- a/core/TESTS/tests.py
+++ b/core/TESTS/tests.py
@@ -204,7 +204,7 @@ class PageTests(TestCase):
response = self.client.get('/admin/login/')
content = response.content.decode()
self.assertEqual(response.status_code, 200)
- ph = r'<h1 id="site-name">Troggle administration</h1>'
+ ph = r'<h1 id="site-name">Troggle database administration</h1>'
phmatch = re.search(ph, content)
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")