From a2c1e9fe3d3b9449fe59ba5654d68ed470a163ff Mon Sep 17 00:00:00 2001 From: SimonDanisch Date: Mon, 6 Nov 2023 16:22:20 +0100 Subject: [PATCH] fix test --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 3ccf939..8b3d350 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -14,7 +14,7 @@ end obs = Observable(0) obs2 = Observable(1) y = Observable(0) - onany(obs, obs2; update=true) do x + onany(obs, obs2; update=true) do x, y y[] += 1 end @test y[] == 1