File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ def test_data_landing_fails_without_vault_when_sensitive_headers_present(self):
276276
277277 # Should return 500 status code when trying to create the landing request
278278 # because sensitive headers are present but vault is not configured
279- response = self .dataset_populator .create_data_landing_raw (payload )
279+ response = self .dataset_populator .create_landing_raw (payload , "data" )
280280 assert response .status_code == 500
281281
282282 def test_data_landing_succeeds_without_vault_when_no_sensitive_headers (self ):
@@ -359,7 +359,7 @@ def test_data_landing_fails_without_config(self):
359359 payload = CreateDataLandingPayload (request_state = request_state , public = True )
360360
361361 # Should fail with 403 because no URL headers configuration is available (fail-fast)
362- response = self .dataset_populator .create_data_landing_raw (payload )
362+ response = self .dataset_populator .create_landing_raw (payload , "data" )
363363 assert response .status_code == 403
364364 assert "No URL headers configuration is available" in response .json ()["err_msg" ]
365365
You can’t perform that action at this time.
0 commit comments