Skip to content

Commit 57c4148

Browse files
committed
make flake happy
1 parent b5c882d commit 57c4148

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/series/test_repr.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -260,11 +260,9 @@ def test_float_repr(self):
260260

261261
def test_different_null_objects(self):
262262
# GH#45263
263-
ser = pd.Series([1, 2, 3, 4], [True, None, np.nan, pd.NaT])
263+
ser = Series([1, 2, 3, 4], [True, None, np.nan, pd.NaT])
264264
result = repr(ser)
265-
expected = (
266-
"True 1\n" "None 2\n" "nan 3\n" "NaT 4\n" "dtype: int64"
267-
)
265+
expected = "True 1\nNone 2\nnan 3\nNaT 4\ndtype: int64"
268266
assert result == expected
269267

270268

0 commit comments

Comments
 (0)