Skip to content

Commit

Permalink
[test] Increase test repeat items
Browse files Browse the repository at this point in the history
This is now possible since a68c4a1
  • Loading branch information
cgalibern committed Dec 27, 2021
1 parent a68c4a1 commit 857087a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opensvc/tests/commands/svc/test_references.py
Expand Up @@ -94,7 +94,7 @@ def __init__(self, message):
("baz", "abc", "abc"),
("bar", "{baz}ref", "abcref"),
("foo_bar_ref", "a={bar} b={bar} c={bar}", "a=abcref b=abcref c=abcref"),
("foo_bar_ref_max", " ".join(["{bar}"] * int(MAX_RECURSION / 4)), " ".join(["abcref"] * int(MAX_RECURSION / 4))),
("foo_bar_ref_max", " ".join(["{bar}"] * int(MAX_RECURSION * 40)), " ".join(["abcref"] * int(MAX_RECURSION * 40))),
]

ref_names = [key[0] for key in REFS]
Expand Down

0 comments on commit 857087a

Please sign in to comment.