From 857087a821b715bd665472c66c4ae04f4bb4b570 Mon Sep 17 00:00:00 2001 From: Cyril Galibern Date: Mon, 27 Dec 2021 18:03:23 +0100 Subject: [PATCH] [test] Increase test repeat items This is now possible since a68c4a15ec929a7c99b78aefb0362b4f6ea0499d --- opensvc/tests/commands/svc/test_references.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opensvc/tests/commands/svc/test_references.py b/opensvc/tests/commands/svc/test_references.py index 67f97b6a3..9609754dc 100644 --- a/opensvc/tests/commands/svc/test_references.py +++ b/opensvc/tests/commands/svc/test_references.py @@ -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]