diff options
-rw-r--r-- | core/TESTS/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index 4d3286f..14f9839 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -520,7 +520,7 @@ class PageTests(TestCase): response = self.client.get("/eastings") self.assertEqual(response.status_code, HTTPStatus.OK) content = response.content.decode() - ph = r"<tr><th>Survex Station</th><th>x</th><th>y</th></tr>" + ph = r"<tr><th>Survex Station</th><th>x</th><th>y</th>" phmatch = re.search(ph, content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'") |