Explorar o código

fix unit tests

Khaleel Al-Adhami hai 3 semanas
pai
achega
97d15b340e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      tests/units/test_var.py

+ 1 - 1
tests/units/test_var.py

@@ -1789,7 +1789,7 @@ def cv_fget(state: BaseState) -> int:
     [
         (["a"], {None: {"a"}}),
         (["b"], {None: {"b"}}),
-        ([ComputedVar(fget=cv_fget)], {None: {"cv_fget_rx_state_"}}),
+        ([ComputedVar(fget=cv_fget)], {None: {"cv_fget"}}),
     ],
 )
 def test_computed_var_deps(deps: list[str | Var], expected: set[str]):