-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TST: Regression test for #33765 #41169
Conversation
ShaharNaveh
commented
Apr 26, 2021
- closes BUG: RecursionError when aligning column MultiIndex #33765
- tests added / passed
- Ensure all linting tests pass, see here for how to run them
@@ -1782,3 +1783,22 @@ def test_inplace_arithmetic_series_update(): | |||
|
|||
expected = DataFrame({"A": [2, 3, 4]}) | |||
tm.assert_frame_equal(df, expected) | |||
|
|||
|
|||
def test_arithemetic_multiindex_align(): # Needs a better name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really not sure on how to call this.
Also not sure about the placement of the test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is fine
@@ -1782,3 +1783,22 @@ def test_inplace_arithmetic_series_update(): | |||
|
|||
expected = DataFrame({"A": [2, 3, 4]}) | |||
tm.assert_frame_equal(df, expected) | |||
|
|||
|
|||
def test_arithemetic_multiindex_align(): # Needs a better name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is fine
lgtm if you can make a not-draft can merge. |
There is a test failure that seems unrelated. Is there a possibility that the changes here, causing that test to fail? |
no this occasionaly fails |
thanks @ShaharNaveh |