Skip to content

Commit 8488564

Browse files
committed
Add missing arg
1 parent 3fe94a0 commit 8488564

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
@@ -690,7 +690,8 @@ def test_constructor_with_datetime_tz(self):
690690

691691
@pytest.mark.parametrize('arg, dtype',
692692
['2013-01-01 00:00:00', pd.NaT, np.nan, None])
693-
def test_constructor_with_naive_string_and_datetimetz_dtype(self, arg):
693+
def test_constructor_with_naive_string_and_datetimetz_dtype(self, arg,
694+
dtype):
694695
# GH 17415: With naive string
695696
result = Series([arg], dtype='datetime64[ns, CET]')
696697
expected = Series([pd.Timestamp(arg, tz='CET')])

0 commit comments

Comments
 (0)