Skip to content

Commit 320e7bd

Browse files
committed
[GPCAPIM-395]: Update PDS and SDS URLs to use HTTPS
1 parent eebb3f4 commit 320e7bd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

gateway-api/src/gateway_api/test_app.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def client() -> Generator[FlaskClient[Flask]]:
2727
{
2828
"FLASK_HOST": "localhost",
2929
"FLASK_PORT": "5000",
30-
"PDS_URL": "http://test-pds-url",
31-
"SDS_URL": "http://test-sds-url",
30+
"PDS_URL": "https://test-pds-url",
31+
"SDS_URL": "https://test-sds-url",
3232
}
3333
):
3434
configure_app(app)
@@ -100,8 +100,8 @@ def test_start_app_logs_startup_details(self) -> None:
100100
test_env_vars = {
101101
"FLASK_HOST": "test_host",
102102
"FLASK_PORT": "1234",
103-
"PDS_URL": "test_pds_url",
104-
"SDS_URL": "test_sds_url",
103+
"PDS_URL": "https://test-pds-url",
104+
"SDS_URL": "https://test-sds-url",
105105
}
106106

107107
with ScopedEnvVars(test_env_vars):

0 commit comments

Comments
 (0)