Skip to content

Commit d1cb62b

Browse files
committed
Fix module test
1 parent 79bb621 commit d1cb62b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_modules.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async def test_inputs_proxy():
4949
assert input_proxy["a"]() is None
5050
assert input["mod1-a"]() is None
5151

52-
input_proxy.a.set(2)
52+
input_proxy.a._set(2)
5353

5454
with isolate():
5555
assert input.a() == 1
@@ -67,7 +67,7 @@ async def test_inputs_proxy():
6767
assert input_proxy_proxy["a"]() is None
6868
assert input["mod1-mod2-a"]() is None
6969

70-
input_proxy_proxy.a.set(3)
70+
input_proxy_proxy.a._set(3)
7171

7272
with isolate():
7373
assert input.a() == 1

0 commit comments

Comments
 (0)