Skip to content

Commit e53844b

Browse files
committed
fix: ruff format expected string in test_execution_plan
1 parent 0a00bd3 commit e53844b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/tests/test_dataframe.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,9 @@ def test_optimized_logical_plan(aggregate_df):
731731
def test_execution_plan(aggregate_df):
732732
plan = aggregate_df.execution_plan()
733733

734-
expected = "AggregateExec: mode=FinalPartitioned, gby=[c1@0 as c1], aggr=[sum(test.c2)]\n" # noqa: E501
734+
expected = (
735+
"AggregateExec: mode=FinalPartitioned, gby=[c1@0 as c1], aggr=[sum(test.c2)]\n" # noqa: E501
736+
)
735737

736738
assert expected == plan.display()
737739

0 commit comments

Comments
 (0)