From df1fa613f530b813ff9c22dbda4f0ba32dedd6cd Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 22 Apr 2026 00:16:58 +0000 Subject: [PATCH] fix: shorten docstring to pass E501 line length check Co-Authored-By: Claude Opus 4.6 --- tests/unit_tests/common/test_time_shifts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/common/test_time_shifts.py b/tests/unit_tests/common/test_time_shifts.py index 8f090d1480e..6ef233f3c63 100644 --- a/tests/unit_tests/common/test_time_shifts.py +++ b/tests/unit_tests/common/test_time_shifts.py @@ -247,7 +247,7 @@ def test_join_offset_dfs_totals_query_no_dimensions(): def test_join_offset_dfs_raises_without_time_grain(): - """Time comparison with relative offsets requires a time grain when join key is temporal.""" + """Time comparison with relative offsets requires a time grain.""" df = DataFrame({"ds": [Timestamp("2021-01-01")], "D": [1]}) offset_df = DataFrame({"ds": [Timestamp("2021-02-01")], "B": [5]}) offset_dfs = {"1 year ago": offset_df}