Skip to content
Snippets Groups Projects
Commit 037b3a4f authored by ulif's avatar ulif
Browse files

pep8.

The removed vars were not really used in tests.
parent e2842e21
No related branches found
No related tags found
No related merge requests found
......@@ -71,10 +71,10 @@ class TestHandleOptions(object):
def test_handle_options_caps_conflicting_raises_exc(self):
# conflicting caps-settings raise an exception
with pytest.raises(SystemExit) as exc_info:
options = handle_options(['--caps', '--no-caps'])
with pytest.raises(SystemExit) as exc_info:
options = handle_options(['--no-caps', '--caps'])
with pytest.raises(SystemExit):
handle_options(['--caps', '--no-caps'])
with pytest.raises(SystemExit):
handle_options(['--no-caps', '--caps'])
def test_handle_options_delimiter(self):
# we can set delimiter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment