fix unit tests again

This commit is contained in:
Lendemor 2025-01-15 14:52:01 +01:00
parent 3d3304c65c
commit ec11179aad

View File

@ -35,7 +35,6 @@ from reflex.utils.exceptions import (
from reflex.utils.imports import ImportDict, ImportVar, ParsedImportDict, parse_imports
from reflex.vars import VarData
from reflex.vars.base import LiteralVar, Var
from reflex.vars.object import ObjectVar
@pytest.fixture
@ -841,7 +840,7 @@ def test_component_event_trigger_arbitrary_args():
def on_foo_spec(
_e: Var[JavascriptInputEvent],
alpha: Var[str],
bravo: ObjectVar[dict[str, Any]],
bravo: dict[str, Any],
charlie: Var[_Obj],
):
return [_e.target.value, bravo["nested"], charlie.custom + 42]