Skip to content
Snippets Groups Projects
Commit 6900e3cb authored by Christian Boettcher's avatar Christian Boettcher
Browse files

adjust test to new change

parent 053c6d1e
No related branches found
No related tags found
No related merge requests found
Pipeline #99498 canceled
...@@ -16,7 +16,7 @@ class NonAuthTests(unittest.TestCase): ...@@ -16,7 +16,7 @@ class NonAuthTests(unittest.TestCase):
rsp = self.client.get('/') rsp = self.client.get('/')
self.assertEqual(rsp.status_code, 200, 'Should return 200') self.assertEqual(rsp.status_code, 200, 'Should return 200')
self.assertEqual( self.assertEqual(
rsp.json(), [{'dataset': '/dataset'}, {'storage_target': '/storage_target'}, {'airflow_connections' : '/airflow_connections'}]) rsp.json(), [{'dataset': '/dataset'}, {'storage_target': '/storage_target'}, {'airflow_connections' : '/airflow_connections'}, {'template' : '/template'}])
def test_types(self): def test_types(self):
for location_type in storage.LocationDataType: for location_type in storage.LocationDataType:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment