fix content_type on test_api_create_storage_path

This commit is contained in:
Michael Shamoon 2022-06-13 16:05:24 -07:00 committed by Trenton Holmes
parent ee2847cfea
commit e32cb12ad7

View File

@ -2599,8 +2599,6 @@ class TestApiStoragePaths(DirectoriesMixin, APITestCase):
self.assertEqual(resp_storage_path["id"], self.sp1.id)
self.assertEqual(resp_storage_path["path"], self.sp1.path)
# TODO: Need to investigate and fix
@pytest.mark.skip(reason="Return 400, unsure as to why")
def test_api_create_storage_path(self):
response = self.client.post(
self.ENDPOINT,
@ -2610,6 +2608,6 @@ class TestApiStoragePaths(DirectoriesMixin, APITestCase):
"path": "Somewhere/{asn}",
},
),
format="json",
content_type="application/json",
)
self.assertEqual(response.status_code, 201)