Skip to content

Commit

Permalink
Remove prints from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman committed Apr 4, 2024
1 parent b5d1097 commit be3bcef
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,7 @@ returns_test() = "test"
f(; x, kwargs...) = (x, kwargs[:y])
g(; x) = (x,)
obs = observer(:f => f, :g => g)
display(obs)
update!(obs; x=2, y=3)
display(obs)
@test obs.f == [(2, 3)]
@test obs.g == [(2,)]
end
Expand Down

0 comments on commit be3bcef

Please sign in to comment.