We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ac993 commit 9f3c576Copy full SHA for 9f3c576
plotly/tests/test_optional/test_plotly/test_plot_mpl.py
@@ -17,10 +17,14 @@
17
18
from plotly import exceptions
19
from plotly.plotly import plotly as py
20
-from plotly.tests.utils import PlotlyTestCase
+from unittest import TestCase
21
22
23
-class PlotMPLTest(PlotlyTestCase):
+class PlotMPLTest(TestCase):
24
+ def setUp(self):
25
+ py.sign_in('PlotlyImageTest', '786r5mecv0',
26
+ plotly_domain='https://plot.ly')
27
+
28
@raises(exceptions.PlotlyError)
29
def test_update_type_error(self):
30
fig, ax = plt.subplots()
0 commit comments