Skip to content

Commit 735f35b

Browse files
committed
Add missing arg
1 parent 0f3be92 commit 735f35b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/series/test_constructors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,8 @@ def test_constructor_with_datetime_tz(self):
709709

710710
@pytest.mark.parametrize('arg, dtype',
711711
['2013-01-01 00:00:00', pd.NaT, np.nan, None])
712-
def test_constructor_with_naive_string_and_datetimetz_dtype(self, arg):
712+
def test_constructor_with_naive_string_and_datetimetz_dtype(self, arg,
713+
dtype):
713714
# GH 17415: With naive string
714715
result = Series([arg], dtype='datetime64[ns, CET]')
715716
expected = Series([pd.Timestamp(arg, tz='CET')])

0 commit comments

Comments
 (0)