-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
BlockerBlocking issue or pull request for an upcoming releaseBlocking issue or pull request for an upcoming releaseDtype ConversionsUnexpected or buggy dtype conversionsUnexpected or buggy dtype conversionsExtensionArrayExtending pandas with custom dtypes or arrays.Extending pandas with custom dtypes or arrays.Testingpandas testing functions or related to the test suitepandas testing functions or related to the test suite
Milestone
Description
pandas/pandas/tests/extension/integer/test_integer.py
Lines 327 to 329 in 114f415
# array | |
result = op(s, other) | |
expected = pd.Series(op(data._data, other)) |
says that we're testing the array
op, but s
is a Series
, not an array. Should that be result = pd.Series(op(data, other)
)?
Series is tested later:
pandas/pandas/tests/extension/integer/test_integer.py
Lines 336 to 341 in 114f415
# series | |
s = pd.Series(data) | |
result = op(s, other) | |
expected = pd.Series(data._data) | |
expected = op(expected, other) |
Metadata
Metadata
Assignees
Labels
BlockerBlocking issue or pull request for an upcoming releaseBlocking issue or pull request for an upcoming releaseDtype ConversionsUnexpected or buggy dtype conversionsUnexpected or buggy dtype conversionsExtensionArrayExtending pandas with custom dtypes or arrays.Extending pandas with custom dtypes or arrays.Testingpandas testing functions or related to the test suitepandas testing functions or related to the test suite