Skip to content

Commit 83245b7

Browse files
committed
Test fix
1 parent 60a8ad3 commit 83245b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/deployment-cli-tools/tests/test_codefresh.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,14 @@ def test_create_codefresh_configuration_tests():
214214

215215
assert "samples_e2e_test" in e2e_steps, "samples e2e test step must be included"
216216
test_step = e2e_steps["samples_e2e_test"]
217-
assert "APP_URL=https://samples.${{CF_SHORT_REVISION}}.${{DOMAIN}}" in test_step[
217+
assert "APP_URL=https://samples.${{DOMAIN}}" in test_step[
218218
'environment'], "APP_URL must be provided as environment variable"
219219
assert len(test_step['volumes']) == 1
220220

221221
assert "test-api" in st_build_test_steps
222222
api_steps = l1_steps['tests_api']['scale']
223223
test_step = api_steps["samples_api_test"]
224-
assert "APP_URL=https://samples.${{CF_SHORT_REVISION}}.${{DOMAIN}}/api" in test_step[
224+
assert "APP_URL=https://samples.${{DOMAIN}}/api" in test_step[
225225
'environment'], "APP_URL must be provided as environment variable"
226226
assert len(test_step['volumes']) == 2
227227

0 commit comments

Comments
 (0)