Skip to content

Commit 4792e62

Browse files
committed
assertListEqual DNE in python 2.6 TestCase
1 parent 37ac31a commit 4792e62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tests/test_optional/test_matplotlylib/test_date_times.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ def test_pandas_time_series_date_formatter(self):
6464

6565
x0 = fig.axes[0].lines[0].get_xydata()[0][0]
6666
self.assertEqual(x0, expected_x0)
67-
self.assertListEqual(pfig['data'][0]['x'], expected_x)
67+
self.assertEqual(pfig['data'][0]['x'], expected_x)

0 commit comments

Comments
 (0)