Skip to content

Commit ab0a22f

Browse files
Use D instead of d for time units (rapidsai#20910)
This is a continuation of rapidsai#20803 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) - Matthew Roeschke (https://github.com/mroeschke) Approvers: - Matthew Roeschke (https://github.com/mroeschke) URL: rapidsai#20910
1 parent aaed743 commit ab0a22f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/cudf/cudf/tests/series/methods/test_explode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION.
1+
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION.
22
# SPDX-License-Identifier: Apache-2.0
33

44
import numpy as np
@@ -42,7 +42,7 @@ def leaf_value(request):
4242
elif request.param == "datetime":
4343
return pd.to_datetime("1900-01-01")
4444
elif request.param == "timedelta":
45-
return pd.to_timedelta("10d")
45+
return pd.to_timedelta("10D")
4646
else:
4747
raise ValueError("Unhandled data type")
4848

0 commit comments

Comments
 (0)