Skip to content

Commit a997140

Browse files
committed
Added tuple to mistyped parameter
1 parent 1ffedbe commit a997140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/methods/test_cov_corr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def test_corr_within_bounds(self):
493493
tm.assert_equal(result1, expected1)
494494

495495
rng = np.random.default_rng(seed=42)
496-
df2 = DataFrame(rng.random(100, 4))
496+
df2 = DataFrame(rng.random((100, 4)))
497497
corr_matrix = df2.corr()
498498
assert corr_matrix.min().min() >= -1.0
499499
assert corr_matrix.max().max() <= 1.0

0 commit comments

Comments
 (0)