Skip to content

Commit 21280ed

Browse files
committed
fixed test_lookup_requires_unique_axes
np.random.Generator.random, not np.random.Generator
1 parent 2a6dfae commit 21280ed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/frame/indexing/test_indexing.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,9 @@ def test_lookup_raises(self, float_frame):
14641464

14651465
def test_lookup_requires_unique_axes(self):
14661466
# GH#33041 raise with a helpful error message
1467-
df = DataFrame(np.random.Generator(6).reshape(3, 2), columns=["A", "A"])
1467+
df = DataFrame(
1468+
np.random.default_rng(2).standard_normal((3, 2)), columns=["A", "A"]
1469+
)
14681470

14691471
rows = [0, 1]
14701472
cols = ["A", "A"]

0 commit comments

Comments
 (0)