@@ -215,9 +215,7 @@ def test_schema_vector_invalid(vector_validator, vector):
215215 def test_schema_line_valid (line_validator , line ):
216216 line_validator .validate (line )
217217
218- @pytest .mark .parametrize (
219- "line" , [[[0 , 0 , 0 ], [0 , 0 , 0 ]], {"START" : [0 , 0 , 0 ], "END" : [0 , 0 , 0 ]}]
220- )
218+ @pytest .mark .parametrize ("line" , [[[0 , 0 , 0 ], [0 , 0 , 0 ]], {"START" : [0 , 0 , 0 ], "END" : [0 , 0 , 0 ]}])
221219 def test_schema_line_invalid (line_validator , line ):
222220 with pytest .raises (jsonschema .exceptions .ValidationError ):
223221 line_validator .validate (line )
@@ -226,16 +224,12 @@ def test_schema_line_invalid(line_validator, line):
226224 def test_schema_plane_valid (plane_validator , plane ):
227225 plane_validator .validate (plane )
228226
229- @pytest .mark .parametrize (
230- "plane" , [[[0 , 0 , 0 ], [0 , 0 , 1 ]], {"POINT" : [0 , 0 , 0 ], "NORMAL" : [0 , 0 , 1 ]}]
231- )
227+ @pytest .mark .parametrize ("plane" , [[[0 , 0 , 0 ], [0 , 0 , 1 ]], {"POINT" : [0 , 0 , 0 ], "NORMAL" : [0 , 0 , 1 ]}])
232228 def test_schema_plane_invalid (plane_validator , plane ):
233229 with pytest .raises (jsonschema .exceptions .ValidationError ):
234230 plane_validator .validate (plane )
235231
236- @pytest .mark .parametrize (
237- "circle" , [{"plane" : {"point" : [0 , 0 , 0 ], "normal" : [0 , 0 , 1 ]}, "radius" : 1.0 }]
238- )
232+ @pytest .mark .parametrize ("circle" , [{"plane" : {"point" : [0 , 0 , 0 ], "normal" : [0 , 0 , 1 ]}, "radius" : 1.0 }])
239233 def test_schema_circle_valid (circle_validator , circle ):
240234 circle_validator .validate (circle )
241235
@@ -442,9 +436,7 @@ def test_schema_box_invalid(box_validator, box):
442436 with pytest .raises (jsonschema .exceptions .ValidationError ):
443437 box_validator .validate (box )
444438
445- @pytest .mark .parametrize (
446- "capsule" , [{"line" : {"start" : [0 , 0 , 0 ], "end" : [1 , 0 , 0 ]}, "radius" : 1.0 }]
447- )
439+ @pytest .mark .parametrize ("capsule" , [{"line" : {"start" : [0 , 0 , 0 ], "end" : [1 , 0 , 0 ]}, "radius" : 1.0 }])
448440 def test_schema_capsule_valid (capsule_validator , capsule ):
449441 capsule_validator .validate (capsule )
450442
0 commit comments