style fixes

This commit is contained in:
Markus Unterwaditzer 2015-03-07 15:29:08 +01:00
parent 9300069817
commit fb5ed72c93

View file

@ -84,7 +84,7 @@ def test_parse_pairs_args():
def test_missing_general_section(read_config):
with pytest.raises(cli.CliError) as excinfo:
rv = read_config(u'''
read_config(u'''
[pair my_pair]
a = my_a
b = my_b
@ -105,7 +105,7 @@ def test_missing_general_section(read_config):
def test_wrong_general_section(read_config):
with pytest.raises(cli.CliError) as excinfo:
rv = read_config(u'''
read_config(u'''
[general]
wrong = true
''')