Commit d54a205
authored
apacheGH-48759: [Python] Remove skip condition for pandas/issues/50127 (apache#48760)
### Rationale for this change
Tests `test_binary_column_name` and `test_roundtrip_with_bytes_unicode` were being skipped on pandas 2.0+ due to a pandas regression (pandas-dev/pandas#50127) that caused `NotImplementedError: |S3` when roundtripping DataFrames with bytes column names.
This issue was already fixed in commit e2ac52d (apacheGH-44171) by changing an `if` statement to `elif` in `_reconstruct_columns_from_metadata()`. The fix prevents bytes-typed columns from falling through to the `level.astype(dtype)` call that triggered the pandas error.
### What changes are included in this PR?
Remove the skip conditions from two test cases.
### Are these changes tested?
Yes all related tests pass.
### Are there any user-facing changes?
No.
* GitHub Issue: apache#48759
Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>1 parent 4f77a06 commit d54a205
1 file changed
+0
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
534 | 534 | | |
535 | 535 | | |
536 | 536 | | |
537 | | - | |
538 | | - | |
539 | | - | |
540 | | - | |
541 | | - | |
542 | 537 | | |
543 | 538 | | |
544 | 539 | | |
| |||
3323 | 3318 | | |
3324 | 3319 | | |
3325 | 3320 | | |
3326 | | - | |
3327 | | - | |
3328 | | - | |
3329 | | - | |
3330 | | - | |
3331 | | - | |
3332 | 3321 | | |
3333 | 3322 | | |
3334 | 3323 | | |
| |||
0 commit comments