@@ -334,11 +334,11 @@ def test_path_deepcopy():
334334 path2 = Path (verts , codes )
335335 path1_copy = path1 .deepcopy ()
336336 path2_copy = path2 .deepcopy ()
337- assert ( path1 is not path1_copy )
338- assert ( path1 .vertices is not path1_copy .vertices )
339- assert ( path2 is not path2_copy )
340- assert ( path2 .vertices is not path2_copy .vertices )
341- assert ( path2 .codes is not path2_copy .codes )
337+ assert path1 is not path1_copy
338+ assert path1 .vertices is not path1_copy .vertices
339+ assert path2 is not path2_copy
340+ assert path2 .vertices is not path2_copy .vertices
341+ assert path2 .codes is not path2_copy .codes
342342
343343
344344def test_path_shallowcopy ():
@@ -349,11 +349,11 @@ def test_path_shallowcopy():
349349 path2 = Path (verts , codes )
350350 path1_copy = path1 .copy ()
351351 path2_copy = path2 .copy ()
352- assert ( path1 is not path1_copy )
353- assert ( path1 .vertices is path1_copy .vertices )
354- assert ( path2 is not path2_copy )
355- assert ( path2 .vertices is path2_copy .vertices )
356- assert ( path2 .codes is path2_copy .codes )
352+ assert path1 is not path1_copy
353+ assert path1 .vertices is path1_copy .vertices
354+ assert path2 is not path2_copy
355+ assert path2 .vertices is path2_copy .vertices
356+ assert path2 .codes is path2_copy .codes
357357
358358
359359@pytest .mark .parametrize ('phi' , np .concatenate ([
0 commit comments