Skip to content

Commit a3b46b2

Browse files
committed
fix ci
1 parent d1d723e commit a3b46b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_slicer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_slicer_init():
2828
assert isinstance(s.graph, dcc.Graph)
2929
assert isinstance(s.slider, dcc.Slider)
3030
assert isinstance(s.stores, list)
31-
assert all(isinstance(store, dcc.Store) for store in s.stores)
31+
assert all(isinstance(store, (dcc.Store, dcc.Interval)) for store in s.stores)
3232

3333

3434
def test_scene_id_and_context_id():

0 commit comments

Comments
 (0)