We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f532e26 commit 6227c2bCopy full SHA for 6227c2b
tests/conftest.py
@@ -60,14 +60,13 @@ def service_url(environment, service_base_path):
60
http_base = "https://"
61
# commented this out for testing base_url = f"{http_base}{environment}.api.service.nhs.uk"
62
base_url = f"{http_base}.internal-qa.api.service.nhs.uk"
63
-
64
return f"{base_url}/{service_base_path}"
65
66
67
@pytest.fixture(scope="session")
68
def is_mocked_environment(environment, service_base_path):
69
- return environment == "internal-dev" and "ft" in service_base_path
70
+ return environment == "internal-qa" and "ft" in service_base_path
+# changed the environment variable to internal-qa from internal-dev
71
72
73
def status_endpoint_api_key():
0 commit comments