Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 1, 2021
1 parent a9635c6 commit 092ba46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions panel/tests/test_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,9 +660,9 @@ class Test(param.Parameterized):
assert number.value != 3
assert test.a == 3

test.a = 4
assert number.value != 4
assert test.a == 4
pane._widgets['a']._process_events({'value': 4})
assert test.a == 3
assert number.value == 4


def test_set_show_name(document, comm):
Expand Down

0 comments on commit 092ba46

Please sign in to comment.