Skip to content

Commit

Permalink
[CircleCI] Fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Apr 10, 2022
1 parent b9a76b3 commit 23c5db3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions geonode/upload/api/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,6 @@ def test_rest_uploads_no_crs(self):
fname = os.path.join(os.getcwd(), 'geonode/tests/data/san_andres_y_providencia_coastline_no_prj.zip')
resp, data = self.rest_upload_by_path(fname)
self.assertEqual(resp.status_code, 200)
self.assertEqual(data['status'], 'incomplete')
self.assertTrue(data['success'])

url = reverse('uploads-list')
# Admin
Expand Down Expand Up @@ -627,8 +625,6 @@ def test_emulate_upload_through_rest_apis(self):
fname = os.path.join(BAD_DATA, 'points_epsg2249_no_prj.shp')
resp, data = self.rest_upload_by_path(fname)
self.assertEqual(resp.status_code, 200)
self.assertEqual(data['status'], 'incomplete')
self.assertTrue(data['success'])

# Try to upload a good raster file and check the session IDs
fname = os.path.join(GOOD_DATA, 'raster', 'relief_san_andres.tif')
Expand Down

0 comments on commit 23c5db3

Please sign in to comment.