Skip to content

Commit

Permalink
remove authentication on endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Oct 19, 2024
1 parent b14d148 commit c33e3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/tests/test_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def test_get_GpxView(self):
def test_get_workspace(self):
# get training workspace

res = self.client.get(f"{API_BASE}/workspace/dataset_1/", headers=headersList)
res = self.client.get(f"{API_BASE}/workspace/dataset_1/")
self.assertEqual(res.status_code, 409)

def test_download_workspace(self):
Expand Down

0 comments on commit c33e3bc

Please sign in to comment.