mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
style fixes
This commit is contained in:
parent
9300069817
commit
fb5ed72c93
1 changed files with 2 additions and 2 deletions
|
|
@ -84,7 +84,7 @@ def test_parse_pairs_args():
|
||||||
|
|
||||||
def test_missing_general_section(read_config):
|
def test_missing_general_section(read_config):
|
||||||
with pytest.raises(cli.CliError) as excinfo:
|
with pytest.raises(cli.CliError) as excinfo:
|
||||||
rv = read_config(u'''
|
read_config(u'''
|
||||||
[pair my_pair]
|
[pair my_pair]
|
||||||
a = my_a
|
a = my_a
|
||||||
b = my_b
|
b = my_b
|
||||||
|
|
@ -105,7 +105,7 @@ def test_missing_general_section(read_config):
|
||||||
|
|
||||||
def test_wrong_general_section(read_config):
|
def test_wrong_general_section(read_config):
|
||||||
with pytest.raises(cli.CliError) as excinfo:
|
with pytest.raises(cli.CliError) as excinfo:
|
||||||
rv = read_config(u'''
|
read_config(u'''
|
||||||
[general]
|
[general]
|
||||||
wrong = true
|
wrong = true
|
||||||
''')
|
''')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue