Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
forman committed Nov 11, 2024
1 parent ae6d79c commit d6de7ba
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions test/webapi/viewer/test_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,14 @@ def test_viewer_config(self):


class ViewerExtRoutesTest(RoutesTestCase):
def test_viewer_ext_root(self):
response = self.fetch("/viewer/ext")
self.assertResponseOK(response)

def test_viewer_ext_contributions(self):
response = self.fetch("/viewer/ext/contributions")
self.assertResponseOK(response)
self.assertResourceNotFoundResponse(response)

def test_viewer_ext_layout(self):
response = self.fetch("/viewer/ext/layout")
self.assertResponseOK(response)
self.assertResourceNotFoundResponse(response)

def test_viewer_ext_callback(self):
response = self.fetch("/viewer/ext/layout")
self.assertResponseOK(response)
self.assertResourceNotFoundResponse(response)

0 comments on commit d6de7ba

Please sign in to comment.