Skip to content

Commit 00cf447

Browse files
committed
Use correct dataset_populator method after rebase
1 parent cb6b8ad commit 00cf447

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/test_landing_requests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)