We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79bb621 commit d1cb62bCopy full SHA for d1cb62b
tests/test_modules.py
@@ -49,7 +49,7 @@ async def test_inputs_proxy():
49
assert input_proxy["a"]() is None
50
assert input["mod1-a"]() is None
51
52
- input_proxy.a.set(2)
+ input_proxy.a._set(2)
53
54
with isolate():
55
assert input.a() == 1
@@ -67,7 +67,7 @@ async def test_inputs_proxy():
67
assert input_proxy_proxy["a"]() is None
68
assert input["mod1-mod2-a"]() is None
69
70
- input_proxy_proxy.a.set(3)
+ input_proxy_proxy.a._set(3)
71
72
73
0 commit comments