Skip to content

Commit afcd8a2

Browse files
author
Tom Augspurger
committed
BUG: Seed RNG in test_partially_invalid_plot_data
1 parent 8d87a29 commit afcd8a2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/test_graphics.py

+1
Original file line numberDiff line numberDiff line change
@@ -1106,6 +1106,7 @@ def test_all_invalid_plot_data(self):
11061106

11071107
@slow
11081108
def test_partially_invalid_plot_data(self):
1109+
np.random.seed(42)
11091110
kinds = 'line', 'bar', 'barh', 'kde', 'density'
11101111
df = DataFrame(randn(10, 2), dtype=object)
11111112
df[np.random.rand(df.shape[0]) > 0.5] = 'a'

0 commit comments

Comments
 (0)