Skip to content

Commit fc2dda9

Browse files
authored
Merge pull request #3035 from IntersectMBO/longer_rand_str
feat(common): increase random string length in test ID
2 parents 7cf21c4 + cc3b406 commit fc2dda9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cardano_node_tests/tests/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def get_test_id(cluster_obj: clusterlib.ClusterLib) -> str:
171171
Log the test ID into cluster manager log file.
172172
"""
173173
curr_test = pytest_utils.get_current_test()
174-
rand_str = clusterlib.get_rand_str(3)
174+
rand_str = clusterlib.get_rand_str(6)
175175
test_id = (
176176
f"{curr_test.test_function}{curr_test.test_params}_ci{cluster_obj.cluster_id}_{rand_str}"
177177
)

0 commit comments

Comments
 (0)