File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1165,8 +1165,9 @@ def test_count():
11651165 """
11661166 my_frame = query ("select count(day) from forest_fires" )
11671167 pandas_frame = FOREST_FIRES .copy ()
1168- pandas_frame = pandas_frame [["month" ]].count ().to_frame ("_col0" ).reset_index (
1169- drop = True )
1168+ pandas_frame = (
1169+ pandas_frame [["month" ]].count ().to_frame ("_col0" ).reset_index (drop = True )
1170+ )
11701171 tm .assert_frame_equal (pandas_frame , my_frame )
11711172
11721173
@@ -1177,6 +1178,7 @@ def test_count_star():
11771178 """
11781179 my_frame = query ("select count(*) from forest_fires" )
11791180 pandas_frame = FOREST_FIRES .copy ()
1180- pandas_frame = pandas_frame [["month" ]].count ().to_frame ("_col0" ).reset_index (
1181- drop = True )
1182- tm .assert_frame_equal (pandas_frame , my_frame )
1181+ pandas_frame = (
1182+ pandas_frame [["month" ]].count ().to_frame ("_col0" ).reset_index (drop = True )
1183+ )
1184+ tm .assert_frame_equal (pandas_frame , my_frame )
You can’t perform that action at this time.
0 commit comments