Skip to content

Commit 169974b

Browse files
committed
Try retrigger CircleCI
1 parent e7f5bf2 commit 169974b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/plotting/test_series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def test_line_use_index_false(self):
208208

209209
@pytest.mark.slow
210210
def test_bar_log(self):
211-
expected = np.array([.1, 1., 10., 100., 1000., 1e4])
211+
expected = np.array([1e-1, 1e0, 1e1, 1e2, 1e3, 1e4])
212212

213213
_, ax = self.plt.subplots()
214214
ax = Series([200, 500]).plot.bar(log=True, ax=ax)
@@ -221,7 +221,7 @@ def test_bar_log(self):
221221
tm.close()
222222

223223
# GH 9905
224-
expected = np.array([1.0e-05, 1.0e-4, 1.0e-3, 1.0e-2, 1.0e-1, 1., 10.])
224+
expected = np.array([1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1e0, 1e1])
225225

226226
_, ax = self.plt.subplots()
227227
ax = Series([0.1, 0.01, 0.001]).plot(log=True, kind='bar', ax=ax)

0 commit comments

Comments
 (0)