Skip to content

Commit c6d65bd

Browse files
use consistent naming in test
1 parent 6a2568a commit c6d65bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexing/multiindex/test_multiindex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,10 @@ def test_multiindex_assign_aligns_as_implicit_tuple(self):
273273
tm.assert_frame_equal(df1, df3)
274274

275275
# GH 62518
276-
meta = DataFrame(
276+
df4 = DataFrame(
277277
columns=MultiIndex.from_arrays(
278278
[["a", "a", "z", "z"], pd.Categorical([1, 2, 1, 2])],
279279
),
280280
dtype=object,
281281
)
282-
meta["z"] = meta["z"].astype("int64")
282+
df4["z"] = df4["z"].astype("int64")

0 commit comments

Comments
 (0)