Skip to content

Commit f4267aa

Browse files
committed
🔧 Cleanup test_stream.py.
1 parent 5258fa7 commit f4267aa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

plotly/tests/test_core/test_stream/test_stream.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
from __future__ import absolute_import
66

77
import time
8-
from unittest import TestCase
98

109
from nose.plugins.attrib import attr
1110

1211
import plotly.plotly as py
1312
from plotly.graph_objs import (Layout, Scatter, Stream)
1413
from plotly import exceptions
14+
from plotly.tests.utils import PlotlyTestCase
1515

1616
un = 'PythonAPI'
1717
ak = 'ubpiol2cve'
@@ -22,9 +22,10 @@
2222
'plotly_ssl_verification': False}
2323

2424

25-
class TestStreaming(TestCase):
25+
class TestStreaming(PlotlyTestCase):
2626

2727
def setUp(self):
28+
super(TestStreaming, self).setUp()
2829
py.sign_in(un, ak, **config)
2930

3031
@attr('slow')

0 commit comments

Comments
 (0)