Skip to content

Commit cef9e9a

Browse files
authored
remove pd namespace
1 parent 2f3c952 commit cef9e9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/frame/methods/test_cov_corr.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -416,12 +416,12 @@ def test_corrwith_spearman_with_tied_data(self):
416416
{
417417
"A": [2, 5, 8, 9],
418418
"B": [2, np.nan, 8, 9],
419-
"C": pd.Series([2, np.nan, 8, 9], dtype="Int64"),
419+
"C": Series([2, np.nan, 8, 9], dtype="Int64"),
420420
"D": [0, 1, 1, 0],
421421
"E": [0, np.nan, 1, 0],
422-
"F": pd.Series([0, np.nan, 1, 0], dtype="Float64"),
422+
"F": Series([0, np.nan, 1, 0], dtype="Float64"),
423423
"G": [False, True, True, False],
424-
"H": pd.Series([False, pd.NA, True, False], dtype="boolean"),
424+
"H": Series([False, pd.NA, True, False], dtype="boolean"),
425425
},
426426
)
427427
ser_list = [

0 commit comments

Comments
 (0)