We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a00bd3 commit e53844bCopy full SHA for e53844b
python/tests/test_dataframe.py
@@ -731,7 +731,9 @@ def test_optimized_logical_plan(aggregate_df):
731
def test_execution_plan(aggregate_df):
732
plan = aggregate_df.execution_plan()
733
734
- expected = "AggregateExec: mode=FinalPartitioned, gby=[c1@0 as c1], aggr=[sum(test.c2)]\n" # noqa: E501
+ expected = (
735
+ "AggregateExec: mode=FinalPartitioned, gby=[c1@0 as c1], aggr=[sum(test.c2)]\n" # noqa: E501
736
+ )
737
738
assert expected == plan.display()
739
0 commit comments