Skip to content

Commit

Permalink
More fixture fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Nov 20, 2023
1 parent 1d2cb55 commit 6611b74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pandas/tests/frame/indexing/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ def test_setitem_value_coercing_dtypes(self, indexer, idx):


class TestDataFrameIndexingUInt64:
def test_setitem(self, uint64_frame):
def test_setitem(self):
df = DataFrame(
{"A": np.arange(3), "B": [2**63, 2**63 + 5, 2**63 + 10]},
dtype=np.uint64,
Expand Down
4 changes: 2 additions & 2 deletions pandas/tests/tseries/offsets/test_offsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
FY5253Quarter,
LastWeekOfMonth,
MonthBegin,
MonthOffset,
Nano,
Tick,
Week,
Expand Down Expand Up @@ -107,7 +106,8 @@ def _create_offset(klass, value=1, normalize=False):
params=[
getattr(offsets, o)
for o in offsets.__all__
if issubclass(getattr(offsets, o), MonthOffset) and o != "MonthOffset"
if issubclass(getattr(offsets, o), liboffsets.MonthOffset)
and o != "MonthOffset"
]
)
def month_classes(request):
Expand Down

0 comments on commit 6611b74

Please sign in to comment.