Skip to content

Commit fe0443c

Browse files
committed
make pep8 happy
1 parent 0948b84 commit fe0443c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/integration/test_main.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,22 @@ def test_schema_default():
1111

1212
def 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

1819
def 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

2426
def 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

0 commit comments

Comments
 (0)