From 1bcd0805b42298d0bae871fd77e68a5fc55e5572 Mon Sep 17 00:00:00 2001 From: Dillon Niederhut Date: Mon, 5 Feb 2018 06:51:30 -0600 Subject: [PATCH] CLN: linting fixes for arithmetic tests --- pandas/tests/frame/test_arithmetic.py | 1 - pandas/tests/series/test_arithmetic.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pandas/tests/frame/test_arithmetic.py b/pandas/tests/frame/test_arithmetic.py index bd781eba0954eb..3f69ce3503d280 100644 --- a/pandas/tests/frame/test_arithmetic.py +++ b/pandas/tests/frame/test_arithmetic.py @@ -1,6 +1,5 @@ # -*- coding: utf-8 -*- -import pytest import numpy as np import pytest diff --git a/pandas/tests/series/test_arithmetic.py b/pandas/tests/series/test_arithmetic.py index 78eb0e178f45cb..5a945457b3787a 100644 --- a/pandas/tests/series/test_arithmetic.py +++ b/pandas/tests/series/test_arithmetic.py @@ -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'),