Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Nov 26, 2020
1 parent 4f17523 commit 2a4af1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_slicer.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_slicer_init():
assert isinstance(s.graph, dcc.Graph)
assert isinstance(s.slider, dcc.Slider)
assert isinstance(s.stores, list)
assert all(isinstance(store, dcc.Store) for store in s.stores)
assert all(isinstance(store, (dcc.Store, dcc.Interval)) for store in s.stores)


def test_scene_id_and_context_id():
Expand Down

0 comments on commit 2a4af1c

Please sign in to comment.