We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_session.py
1 parent f4267aa commit b9c5e7fCopy full SHA for b9c5e7f
plotly/tests/test_core/test_session/test_session.py
@@ -2,12 +2,17 @@
2
3
from plotly.tests.utils import PlotlyTestCase
4
5
+from plotly import session
6
from plotly.session import update_session_plot_options, SHARING_OPTIONS
7
from plotly.exceptions import PlotlyError
8
9
10
class TestSession(PlotlyTestCase):
11
12
+ def setUp(self):
13
+ super(TestSession, self).setUp()
14
+ session._session['plot_options'].clear()
15
+
16
def test_update_session_plot_options_invalid_sharing_argument(self):
17
18
# Return PlotlyError when sharing arguement is not
0 commit comments