Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sdc50 committed Apr 5, 2024
1 parent 307b534 commit 26a9108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/test_tethys_apps/test_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def test_urls(self):
url = reverse("app_library")
resolver = resolve(url)
self.assertEqual("/apps/", url)
self.assertEqual("RedirectView", resolver.func.__name__)
self.assertEqual("django.views.generic.base.RedirectView", resolver._func_path)
self.assertEqual("home", resolver.func.view_initkwargs["pattern_name"])

url = reverse("send_beta_feedback")
Expand Down

0 comments on commit 26a9108

Please sign in to comment.