From d67cd7fc83c984fff150c1996489b5372357be97 Mon Sep 17 00:00:00 2001 From: Michele Bortolomeazzi <38500587+MicheleBortol@users.noreply.github.com> Date: Wed, 24 Jul 2024 17:57:50 +0200 Subject: [PATCH] Fix view to be tested. --- test/integration/test_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_index.py b/test/integration/test_index.py index ae9250e..4c7c8d3 100755 --- a/test/integration/test_index.py +++ b/test/integration/test_index.py @@ -50,7 +50,7 @@ def test_load_index(self, user1): conn = get_connection(user1) user_name = conn.getUser().getName() django_client = self.new_django_client(user_name, user_name) - index_url = reverse("omero_vitessce_index") + index_url = reverse("vitessce_index") # asserts we get a 200 response code etc rsp = get(django_client, index_url) html_str = rsp.content.decode()