From fb5ed72c938c1e9d5859882af5d976c841311c8b Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 7 Mar 2015 15:29:08 +0100 Subject: [PATCH] style fixes --- tests/cli/test_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cli/test_config.py b/tests/cli/test_config.py index ef143e2..c0c1e41 100644 --- a/tests/cli/test_config.py +++ b/tests/cli/test_config.py @@ -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 ''')