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 f38d8d9 commit eb566a1Copy full SHA for eb566a1
plotly/tests/test_core/test_grid/test_grid.py
@@ -118,13 +118,13 @@ def test_overspecified_grid_args(self):
118
with self.assertRaises(InputError):
119
parse_grid_id_args(self._grid, self._grid_url)
120
121
- # Out of order usage
122
- def test_scatter_from_non_uploaded_grid(self):
123
- c1 = Column([1, 2, 3, 4], 'first column')
124
- c2 = Column(['a', 'b', 'c', 'd'], 'second column')
125
- g = Grid([c1, c2])
126
- with self.assertRaises(ValueError):
127
- Scatter(xsrc=g[0], ysrc=g[1])
+ # not broken anymore since plotly 3.0.0
+ # def test_scatter_from_non_uploaded_grid(self):
+ # c1 = Column([1, 2, 3, 4], 'first column')
+ # c2 = Column(['a', 'b', 'c', 'd'], 'second column')
+ # g = Grid([c1, c2])
+ # with self.assertRaises(ValueError):
+ # Scatter(xsrc=g[0], ysrc=g[1])
128
129
def test_column_append_of_non_uploaded_grid(self):
130
c1 = Column([1, 2, 3, 4], 'first column')
0 commit comments