-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
TST/CLN: reuse float_frame fixture in tests\reshape\test_concat.py #26763
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/CLN: reuse float_frame fixture in tests\reshape\test_concat.py #26763
Conversation
Codecov Report
@@ Coverage Diff @@
## master #26763 +/- ##
==========================================
- Coverage 91.71% 91.7% -0.01%
==========================================
Files 178 178
Lines 50740 50740
==========================================
- Hits 46538 46533 -5
- Misses 4202 4207 +5
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #26763 +/- ##
==========================================
- Coverage 91.71% 91.71% -0.01%
==========================================
Files 178 178
Lines 50740 50740
==========================================
- Hits 46538 46534 -4
- Misses 4202 4206 +4
Continue to review full report at Codecov.
|
pandas/tests/reshape/test_concat.py
Outdated
@@ -767,18 +761,18 @@ def test_append(self, sort): | |||
# append empty |
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.
can you split this tests here (test_append_empty)
pandas/tests/reshape/test_concat.py
Outdated
assert appended is not self.frame | ||
appended = empty.append(float_frame) | ||
tm.assert_frame_equal(float_frame, appended) | ||
assert appended is not float_frame | ||
|
||
# Overlap |
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.
here: test_append_errors
lgtm. merge on green. |
thanks @simonjayhawkins |
No description provided.