diff --git a/beat/web/toolchains/tests.py b/beat/web/toolchains/tests.py index eba00d7809ade16dd93340a35ac33b0bf0bf7fb8..904c94fe70f2c753273f87469389716589c2aac3 100644 --- a/beat/web/toolchains/tests.py +++ b/beat/web/toolchains/tests.py @@ -1196,12 +1196,12 @@ class ToolchainUpdate(ToolchainsAPIBase): def test_fail_to_update_without_content_not_json_request(self): self.login_jackdoe() response = self.client.put(self.url) - self.checkResponse(response, 400) + self.checkResponse(response, 200, content_type="application/json") - def test_fail_to_update_without_content(self): + def test_successful_update_without_content(self): self.login_jackdoe() response = self.client.put(self.url, "{}", content_type="application/json") - self.checkResponse(response, 400, content_type="application/json") + self.checkResponse(response, 200, content_type="application/json") def test_successful_update_description_only(self): self.login_jackdoe()