Skip to content

Commit 470c964

Browse files
1 parent 449bc10 commit 470c964

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

tests/compliance/date/test_date_compliance.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def test_array_interface_copy(self, data):
7575
import numpy as np
7676
import warnings
7777
from pandas.compat.numpy import np_version_gt2
78-
78+
7979
result_copy1 = np.array(data, copy=True)
8080
result_copy2 = np.array(data, copy=True)
8181
assert not np.may_share_memory(result_copy1, result_copy2)
@@ -89,6 +89,7 @@ def test_array_interface_copy(self, data):
8989
result_nocopy2 = np.array(data, copy=False)
9090
assert np.may_share_memory(result_nocopy1, result_nocopy2)
9191

92+
9293
class TestMissing(base.BaseMissingTests):
9394
pass
9495

tests/compliance/json/test_json_compliance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def test_array_interface_copy(self, data):
147147
import numpy as np
148148
import warnings
149149
from pandas.compat.numpy import np_version_gt2
150-
150+
151151
result_copy1 = np.array(data, copy=True)
152152
result_copy2 = np.array(data, copy=True)
153153
assert not np.may_share_memory(result_copy1, result_copy2)
@@ -288,7 +288,7 @@ def test_reduce_series_numeric(self, data, all_numeric_reductions, skipna):
288288
ser = pd.Series(data)
289289

290290
if not self._supports_reduction(ser, op_name):
291-
# Sum does not raise an Error (TypeError or otherwise)
291+
# Sum does not raise an Error (TypeError or otherwise)
292292
if op_name != "sum":
293293
with pytest.raises(TypeError):
294294
getattr(ser, op_name)(skipna=skipna)

tests/compliance/time/test_time_compliance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_array_interface_copy(self, data):
8080
import numpy as np
8181
import warnings
8282
from pandas.compat.numpy import np_version_gt2
83-
83+
8484
result_copy1 = np.array(data, copy=True)
8585
result_copy2 = np.array(data, copy=True)
8686
assert not np.may_share_memory(result_copy1, result_copy2)

0 commit comments

Comments
 (0)