summaryrefslogtreecommitdiffstats
path: root/core/TESTS
diff options
context:
space:
mode:
Diffstat (limited to 'core/TESTS')
-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 46513f6..3bcebc4 100644
--- a/core/TESTS/tests.py
+++ b/core/TESTS/tests.py
@@ -162,7 +162,7 @@ class PageTests(TestCase):
response = self.client.get('/cave/115')
self.assertEqual(response.status_code, 200)
content = response.content.decode()
- ph = r"Cave not found in database"
+ ph = r"Cave Identifier not found in database"
phmatch = re.search(ph, content)
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
@@ -435,7 +435,7 @@ class PageTests(TestCase):
response = self.client.get('/survexfile/not_a_real_cave_number')
self.assertEqual(response.status_code, 200)
content = response.content.decode()
- ph = r'Cave not found in database'
+ ph = r'Cave Identifier not found in database'
phmatch = re.search(ph, content)
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")