Skip to content
Prev Previous commit
Next Next commit
fixing indent error
  • Loading branch information
yuuun authored Dec 14, 2022
commit aba7816d851ba10a2932d29f92ca5ae390061a03
8 changes: 4 additions & 4 deletions pandas/tests/indexes/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -796,10 +796,10 @@ def test_inv(self, simple_index):
~Series(idx)

def test_is_floating_is_deprecated(self, simple_index):
# GH50042
idx = simple_index
with tm.assert_produces_warning(FutureWarning):
idx.is_floating()
# GH50042
idx = simple_index
with tm.assert_produces_warning(FutureWarning):
idx.is_floating()


class NumericBase(Base):
Expand Down