Skip to content

Commit

Permalink
CLN: linting fixes for arithmetic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
deniederhut committed Feb 5, 2018
1 parent b0f37cf commit 1bcd080
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pandas/tests/frame/test_arithmetic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

import pytest
import numpy as np
import pytest

Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/series/test_arithmetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def test_ops_series_timedelta(self):
tm.assert_series_equal(result, expected)

@pytest.mark.xfail(reason="Unary negative is currently not permitted "
"for objects of type TimePeriod, see GH 19297")
"for objects of type TimePeriod, see GH 19297")
def test_ops_series_period(self):
# GH 13043
ser = pd.Series([pd.Period('2015-01-01', freq='D'),
Expand Down

0 comments on commit 1bcd080

Please sign in to comment.