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 43f070f commit 9b2166eCopy full SHA for 9b2166e
plotly/tests/test_optional/test_opt_tracefactory.py
@@ -90,6 +90,6 @@ def test_simple_streamline(self):
90
'type': 'scatter',
91
'mode': 'lines'
92
}
93
- self.assertAlmostEqual(strmln['y'][0:100], expected_strmln_0_100['y'])
94
- self.assertAlmostEqual(strmln['x'][0:100], expected_strmln_0_100['x'])
+ self.assertListEqual(strmln['y'][0:100], expected_strmln_0_100['y'])
+ self.assertListEqual(strmln['x'][0:100], expected_strmln_0_100['x'])
95
0 commit comments