Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 14, 2021
1 parent 6f27f13 commit e32933c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions panel/tests/test_reactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ReactiveLink(Reactive):
# Assert callback is set up correctly
cb = div._callbacks['text'][0]
assert isinstance(cb, partial)
assert cb.args == (document, div.ref['id'], comm)
assert cb.args == (document, div.ref['id'], comm, None)
assert cb.func == obj._comm_change


Expand All @@ -80,7 +80,7 @@ class ReactiveLink(Reactive):
# Assert callback is set up correctly
cb = div._callbacks['text'][0]
assert isinstance(cb, partial)
assert cb.args == (document, div.ref['id'])
assert cb.args == (document, div.ref['id'], None)
assert cb.func == obj._server_change


Expand Down

0 comments on commit e32933c

Please sign in to comment.