summaryrefslogtreecommitdiffstats
path: root/core/TESTS
diff options
context:
space:
mode:
Diffstat (limited to 'core/TESTS')
-rw-r--r--core/TESTS/test_urls.py2
-rw-r--r--core/TESTS/tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/TESTS/test_urls.py b/core/TESTS/test_urls.py
index d796cde..6cee23e 100644
--- a/core/TESTS/test_urls.py
+++ b/core/TESTS/test_urls.py
@@ -37,7 +37,7 @@ These url lines all come from templates/*.html
{% url "dataissues" %}
{% url "dwgallfiles" %}
{% url "dwgupload" %}
-{% url "eastings" %}
+{% url "stations" %}
{% url "exportlogbook" %}
{% url "newcave" %}
{% url "notablepersons" %}
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py
index 14f9839..c93e35e 100644
--- a/core/TESTS/tests.py
+++ b/core/TESTS/tests.py
@@ -517,7 +517,7 @@ class PageTests(TestCase):
def test_eastings(self):
# Needs another test with test data
- response = self.client.get("/eastings")
+ response = self.client.get("/stations")
self.assertEqual(response.status_code, HTTPStatus.OK)
content = response.content.decode()
ph = r"<tr><th>Survex Station</th><th>x</th><th>y</th>"