Skip to content

Commit eb566a1

Browse files
committed
comment out not failing test
1 parent f38d8d9 commit eb566a1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plotly/tests/test_core/test_grid/test_grid.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ def test_overspecified_grid_args(self):
118118
with self.assertRaises(InputError):
119119
parse_grid_id_args(self._grid, self._grid_url)
120120

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])
121+
# not broken anymore since plotly 3.0.0
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])
128128

129129
def test_column_append_of_non_uploaded_grid(self):
130130
c1 = Column([1, 2, 3, 4], 'first column')

0 commit comments

Comments
 (0)