diff --git a/tests/test_variableparameters.py b/tests/test_variableparameters.py index 36dff65..9504182 100644 --- a/tests/test_variableparameters.py +++ b/tests/test_variableparameters.py @@ -226,9 +226,9 @@ def test_filter(): @vdataclass class Conf: x: Variable = vfield() - y: Variable = vfield(default=[2, 2.456546, 0.000022305], decimals=2) - z: Variable = vfield(default=7.5e-9, decimals=3, suffix="s") - w: Variable = vfield(default=7568.4e6, decimals=4, suffix="Hz") + y: Variable = vfield(default=[2, 2.456546, 0.000022305]) + z: Variable = vfield(default=7.5e-9) + w: Variable = vfield(default=7568.4e6) conf = Conf(x=(1, 2, 3)) f = conf.filter(x=1, y=(0, 1))