Explorar el Código

fix unit tests

Khaleel Al-Adhami hace 2 semanas
padre
commit
97d15b340e
Se han modificado 1 ficheros con 1 adiciones y 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]):