8000 BUG: Fix ndarray + DataFrame ops by jbrockmendel · Pull Request #23114 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG: Fix ndarray + DataFrame ops #23114

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

Merged
merged 10 commits into from
Oct 14, 2018
Merged
Prev Previous commit
Next Next commit
typo fixup
  • Loading branch information
jbrockmendel committed Oct 12, 2018
commit a28302a3acbd5c33e491a9269c95ec168427e7e9
2 changes: 1 addition & 1 deletion pandas/tests/arithmetic/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def test_numeric_arr_rdiv_tdscalar(self, three_days, numeric_idx, box):
if box is not pd.Index and broken:
# np.timedelta64(3, 'D') / 2 == np.timedelta64(1, 'D')
raise pytest.xfail("timedelta64 not converted to nanos; "
"Tick division not imlpemented")
"Tick division not implemented")

expected = TimedeltaIndex(['3 Days', '36 Hours'])

Expand Down
0