Skip to content

Commit 4d28cad

Browse files
lint
1 parent 3d50970 commit 4d28cad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/tests/series/test_constructors.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -910,12 +910,12 @@ def test_constructor_with_naive_string_and_datetimetz_dtype(self, arg):
910910
assert_series_equal(result, expected)
911911

912912
@pytest.mark.parametrize("a", [
913-
np.array(['2263-01-01'], dtype='datetime64[D]'),
914-
np.array([datetime(2263, 1, 1)], dtype=object),
915-
np.array([np.datetime64('2263-01-01', 'D')], dtype=object),
916-
np.array(["2263-01-01"], dtype=object)
917-
], ids=['datetime64[D]', 'object-datetime.datetime',
918-
'object-numpy-scalar', 'object-string'])
913+
np.array(['2263-01-01'], dtype='datetime64[D]'),
914+
np.array([datetime(2263, 1, 1)], dtype=object),
915+
np.array([np.datetime64('2263-01-01', 'D')], dtype=object),
916+
np.array(["2263-01-01"], dtype=object)
917+
], ids=['datetime64[D]', 'object-datetime.datetime',
918+
'object-numpy-scalar', 'object-string'])
919919
def test_constructor_datetime_outofbound(self, a):
920920
# GH-26853 (+ bug GH-26206 out of bound non-ns unit)
921921

0 commit comments

Comments
 (0)