From fb75c2fc16491340e32cebf36a361f3e36b2b901 Mon Sep 17 00:00:00 2001 From: Lianhao Lu Date: Fri, 29 Nov 2019 14:49:50 +0800 Subject: Fix pep8 error and warnings Change-Id: Ic32eefcfd4be4d57c9cf30eff0b3fa1aa730d2c0 Issue-ID: VNFSDK-532 Signed-off-by: Lianhao Lu --- tests/cli/test_cli.py | 53 ++++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 26 deletions(-) (limited to 'tests/cli/test_cli.py') diff --git a/tests/cli/test_cli.py b/tests/cli/test_cli.py index b3fb8f0..5c830d3 100644 --- a/tests/cli/test_cli.py +++ b/tests/cli/test_cli.py @@ -1,26 +1,27 @@ -# -# Copyright (c) 2017 GigaSpaces Technologies Ltd. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. -# - -import pytest -from vnfsdk_pkgtools.cli import __main__ - -def test_main(capsys): - with pytest.raises(SystemExit): - args = __main__.parse_args(['csar-create', '-h']) - args.func(args) - out, err = capsys.readouterr() - assert out.startswith('usage:') - +# +# Copyright (c) 2017 GigaSpaces Technologies Ltd. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# + +import pytest + +from vnfsdk_pkgtools.cli import __main__ + + +def test_main(capsys): + with pytest.raises(SystemExit): + args = __main__.parse_args(['csar-create', '-h']) + args.func(args) + out, err = capsys.readouterr() + assert out.startswith('usage:') -- cgit 1.2.3-korg