From cbce1b6266c91266dc447c586499ee71500969e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Sierro?= Date: Tue, 10 Oct 2023 11:42:35 +0200 Subject: [PATCH] test fix --- tests/test_variableparameters.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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))