File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,22 @@ def test_schema_default():
1111
1212def test_schema_v3 ():
1313 """No errors when calling proper v3 file."""
14- testargs = ['--schema' , '3.0.0' , './tests/integration/data/v3.0/petstore.yaml' ]
14+ testargs = ['--schema' , '3.0.0' ,
15+ './tests/integration/data/v3.0/petstore.yaml' ]
1516 main (testargs )
1617
1718
1819def test_schema_v2 ():
1920 """No errors when calling with proper v2 file."""
20- testargs = ['--schema' , '2.0' , './tests/integration/data/v2.0/petstore.yaml' ]
21+ testargs = ['--schema' , '2.0' ,
22+ './tests/integration/data/v2.0/petstore.yaml' ]
2123 main (testargs )
2224
2325
2426def test_schema_unknown ():
2527 """Errors on running with unknown schema."""
26- testargs = ['--schema' , 'x.x' , './tests/integration/data/v2.0/petstore.yaml' ]
28+ testargs = ['--schema' , 'x.x' ,
29+ './tests/integration/data/v2.0/petstore.yaml' ]
2730 with pytest .raises (SystemExit ):
2831 main (testargs )
2932
You can’t perform that action at this time.
0 commit comments