Skip to content

Commit 86fd4d6

Browse files
committed
Moved _assert_replace decorators from private function to class
1 parent a52efb9 commit 86fd4d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexing/test_coercion.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1195,6 +1195,8 @@ def test_fillna_index_period(self):
11951195
pass
11961196

11971197

1198+
@td.skip_if_windows
1199+
@td.skip_if_32bit
11981200
class TestReplaceSeriesCoercion(CoercionBase):
11991201

12001202
# not indexing, but place here for consisntency
@@ -1221,8 +1223,6 @@ def setup_method(self, method):
12211223
self.rep['timedelta64[ns]'] = [pd.Timedelta('1 day'),
12221224
pd.Timedelta('2 day')]
12231225

1224-
@td.skip_if_windows
1225-
@td.skip_if_32bit
12261226
def _assert_replace_conversion(self, from_key, to_key, how):
12271227
index = pd.Index([3, 4], name='xxx')
12281228
obj = pd.Series(self.rep[from_key], index=index, name='yyy')

0 commit comments

Comments
 (0)