File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,8 @@ def test_path_to_polygons():
156
156
p = Path (data )
157
157
158
158
assert_array_equal (p .to_polygons (width = 40 , height = 40 ), [])
159
- assert_array_equal (p .to_polygons (width = 40 , height = 40 , closed_only = False ), [data ])
159
+ assert_array_equal (p .to_polygons (width = 40 , height = 40 , closed_only = False ),
160
+ [data ])
160
161
assert_array_equal (p .to_polygons (), [])
161
162
assert_array_equal (p .to_polygons (closed_only = False ), [data ])
162
163
@@ -165,7 +166,8 @@ def test_path_to_polygons():
165
166
p = Path (data )
166
167
167
168
assert_array_equal (p .to_polygons (width = 40 , height = 40 ), [closed_data ])
168
- assert_array_equal (p .to_polygons (width = 40 , height = 40 , closed_only = False ), [data ])
169
+ assert_array_equal (p .to_polygons (width = 40 , height = 40 , closed_only = False ),
170
+ [data ])
169
171
assert_array_equal (p .to_polygons (), [closed_data ])
170
172
assert_array_equal (p .to_polygons (closed_only = False ), [data ])
171
173
You can’t perform that action at this time.
0 commit comments