diff --git a/tests/dictionaries/00_6regexp_link/tiramisu/base.py b/tests/dictionaries/00_6regexp_link/tiramisu/base.py index 33db1163a..a9847b500 100644 --- a/tests/dictionaries/00_6regexp_link/tiramisu/base.py +++ b/tests/dictionaries/00_6regexp_link/tiramisu/base.py @@ -21,6 +21,6 @@ class Regexp_option_3(RegexpOption): Regexp_option_3._regexp = re_compile(r"^#(?:[0-9a-f]{3}){1,2}$") option_2 = Regexp_option_2(name="var1", doc="a first variable", default="#a1a1a1", properties=frozenset({"mandatory", "standard"}), informations={'type': 'regexp', 'test': ('#b1b1b1', '#b2b2b2')}) -option_3 = Regexp_option_3(name="var2", doc="a second variable", default=Calculation(func['calc_value'], Params((ParamOption(option_2)))), properties=frozenset({"mandatory", "standard"}), informations={'type': 'regexp'}) +option_3 = Regexp_option_3(name="var2", doc="a second variable", default=Calculation(func['calc_value'], Params((ParamOption(option_2)))), properties=frozenset({"mandatory", "standard"}), informations={'type': 'regexp', 'test': ('#b2b1b1', '#b3b2b2')}) optiondescription_1 = OptionDescription(name="rougail", doc="Rougail", group_type=groups.namespace, children=[option_2, option_3], properties=frozenset({"standard"})) option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[optiondescription_1]) diff --git a/tests/dictionaries/00_6regexp_link/tiramisu/no_namespace.py b/tests/dictionaries/00_6regexp_link/tiramisu/no_namespace.py index 39181a6f3..15bb9293a 100644 --- a/tests/dictionaries/00_6regexp_link/tiramisu/no_namespace.py +++ b/tests/dictionaries/00_6regexp_link/tiramisu/no_namespace.py @@ -17,5 +17,5 @@ class Regexp_option_2(RegexpOption): Regexp_option_2._regexp = re_compile(r"^#(?:[0-9a-f]{3}){1,2}$") option_1 = Regexp_option_1(name="var1", doc="a first variable", default="#a1a1a1", properties=frozenset({"mandatory", "standard"}), informations={'type': 'regexp', 'test': ('#b1b1b1', '#b2b2b2')}) -option_2 = Regexp_option_2(name="var2", doc="a second variable", default=Calculation(func['calc_value'], Params((ParamOption(option_1)))), properties=frozenset({"mandatory", "standard"}), informations={'type': 'regexp'}) +option_2 = Regexp_option_2(name="var2", doc="a second variable", default=Calculation(func['calc_value'], Params((ParamOption(option_1)))), properties=frozenset({"mandatory", "standard"}), informations={'type': 'regexp', 'test': ('#b2b1b1', '#b3b2b2')}) option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1, option_2])