Skip to content

Commit ce0b2ef

Browse files
committed
removed comment and errant print statement
1 parent 2dfb4bf commit ce0b2ef

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

pandas/tests/arithmetic/test_period.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1362,7 +1362,6 @@ def test_period_add_timestamp_raises(self, box_with_array):
13621362
with pytest.raises(TypeError, match=msg):
13631363
ts + arr
13641364
msg = "cannot add PeriodArray and DatetimeArray"
1365-
print(box_with_array)
13661365
with pytest.raises(TypeError, match=msg):
13671366
arr + Series([ts])
13681367
with pytest.raises(TypeError, match=msg):

pandas/tests/arrays/string_/test_string.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ def test_mul(dtype):
254254
tm.assert_extension_array_equal(result, expected)
255255

256256

257-
# @pytest.mark.xfail(reason="GH-28527")
258257
def test_add_strings(dtype):
259258
arr = pd.array(["a", "b", "c", "d"], dtype=dtype)
260259
df = pd.DataFrame([["t", "y", "v", "w"]], dtype=object)

0 commit comments

Comments
 (0)