diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-01-16 19:52:05 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-01-16 19:52:05 +0000 |
commit | 1b70ccea3e782b171560e997499c19015e8b5980 (patch) | |
tree | 2ba4bc73b0f6c6ac2bfa8079485194592cd25344 /core/TESTS/tests_logins.py | |
parent | 822965ebe5170fac7946ce0fefa442aeb001d1aa (diff) | |
download | troggle-1b70ccea3e782b171560e997499c19015e8b5980.tar.gz troggle-1b70ccea3e782b171560e997499c19015e8b5980.tar.bz2 troggle-1b70ccea3e782b171560e997499c19015e8b5980.zip |
consistent tests with logbooks junk removal
Diffstat (limited to 'core/TESTS/tests_logins.py')
-rw-r--r-- | core/TESTS/tests_logins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/TESTS/tests_logins.py b/core/TESTS/tests_logins.py index d69b394..364f16a 100644 --- a/core/TESTS/tests_logins.py +++ b/core/TESTS/tests_logins.py @@ -351,7 +351,7 @@ class ComplexLoginTests(TestCase): content = response.content.decode() # with open('admin-op.html', 'w') as f: # f.write(content) - t = re.search(r'Troggle administration', content) + t = re.search(r'Troggle database administration', content) self.assertIsNotNone(t, 'Logged in as \'' + u.username + '\' but failed to get the Troggle Admin page' ) def test_noinfo_login(self): |