From b9fc303e61e0b073649810a768d8ad5062d81426 Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Fri, 30 Aug 2024 10:29:43 +0200 Subject: [PATCH] ipatests: Add missing comma in test_idrange_no_rid_bases_reversed The test is calling ipa idrange-add but is missing a comma in the arguments list. The resulting call is using "--rid-base 100300000--secondary-rid-base". Add the missing comma to build the command with "--rid-base 100300000 --secondary-rid-base" Fixes: https://pagure.io/freeipa/issue/9656 Signed-off-by: Florence Blanc-Renaud Reviewed-By: Alexander Bokovoy --- ipatests/test_integration/test_ipa_idrange_fix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/test_integration/test_ipa_idrange_fix.py b/ipatests/test_integration/test_ipa_idrange_fix.py index de3da9bfd..ff8fbdac9 100644 --- a/ipatests/test_integration/test_ipa_idrange_fix.py +++ b/ipatests/test_integration/test_ipa_idrange_fix.py @@ -72,7 +72,7 @@ class TestIpaIdrangeFix(IntegrationTest): "idrange_reversed", "--base-id", '50000', "--range-size", '20000', - "--rid-base", '100300000' + "--rid-base", '100300000', "--secondary-rid-base", '301000' ])