Skip to content

Commit b8186eb

Browse files
committed
Fix unwanted pattern
1 parent de4e958 commit b8186eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_to_excel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ def test_formated_header_mi_multi_index_throws(self):
621621
("Amazing", "C"), ("Amazing", "D")
622622
]
623623
columns = MultiIndex.from_tuples(header)
624-
rng = np.random.default_rng()
624+
rng = np.random.default_rng(42)
625625
df = DataFrame(
626626
rng.standard_normal((4, 4)),
627627
columns=columns

0 commit comments

Comments
 (0)