Skip to content

Commit 1a4944a

Browse files
committed
fix sub_test_name
1 parent a17f5da commit 1a4944a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tasks:
1212
- func: run tests
1313
vars:
1414
TEST_NAME: kms
15-
SUB_TEST_NAME: gcp fail
15+
SUB_TEST_NAME: gcp-fail
1616
- name: test-azurekms
1717
commands:
1818
- func: run tests
@@ -25,7 +25,7 @@ tasks:
2525
- func: run tests
2626
vars:
2727
TEST_NAME: kms
28-
SUB_TEST_NAME: azure fail
28+
SUB_TEST_NAME: azure-fail
2929

3030
# Load balancer tests
3131
- name: test-load-balancer-auth-ssl

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ def create_kms_tasks():
843843
sub_test_name = kms_type
844844
if not success:
845845
name += "-fail"
846-
sub_test_name += " fail"
846+
sub_test_name += "-fail"
847847
commands = []
848848
if not success:
849849
commands.append(FunctionCall(func="bootstrap mongo-orchestration"))

.evergreen/scripts/setup_kms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def create_archive():
3535

3636
def setup_kms(sub_test_name: str, success: bool) -> None:
3737
success = "fail" not in sub_test_name
38-
sub_test_type = sub_test_name.split()[0]
38+
sub_test_type = sub_test_name.split("-")[0]
3939
if sub_test_name.startswith("azure"):
4040
write_env("TEST_FLE_AZURE_AUTO")
4141
else:

0 commit comments

Comments
 (0)