We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1d723e commit a3b46b2Copy full SHA for a3b46b2
tests/test_slicer.py
@@ -28,7 +28,7 @@ def test_slicer_init():
28
assert isinstance(s.graph, dcc.Graph)
29
assert isinstance(s.slider, dcc.Slider)
30
assert isinstance(s.stores, list)
31
- assert all(isinstance(store, dcc.Store) for store in s.stores)
+ assert all(isinstance(store, (dcc.Store, dcc.Interval)) for store in s.stores)
32
33
34
def test_scene_id_and_context_id():
0 commit comments