We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8035bb commit 28e0f18Copy full SHA for 28e0f18
pandas/tests/indexes/timedeltas/test_constructors.py
@@ -169,8 +169,8 @@ def test_constructor_coverage(self):
169
timedelta_range(start="1 days", periods="foo", freq="D")
170
171
msg = (
172
- r"TimedeltaIndex\(\) must be called with a collection of some kind,"
173
- " '1 days' was passed"
+ r"TimedeltaIndex\(\) must be called with a collection of some kind, "
+ "'1 days' was passed"
174
)
175
with pytest.raises(TypeError, match=msg):
176
TimedeltaIndex("1 days")
0 commit comments