summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-02-18 22:54:41 +0100
committerGuido Günther <agx@sigxcpu.org>2014-02-19 08:33:33 +0100
commitf1bc54279b6f2a9b8848196044ba5312e2af9aaf (patch)
treebb4b86860addbfd5cea6908d224fa61d0ba97665 /tests
parent1b0b17c7138617f8a77c4e66b1cc493549e5e0f8 (diff)
config: Don't pull in config defaults twice
This would otherwise overwrite values set in the legacy config sections. Closes: #733759
Diffstat (limited to 'tests')
-rw-r--r--tests/test_Config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_Config.py b/tests/test_Config.py
index 9a68f8c..2bae765 100644
--- a/tests/test_Config.py
+++ b/tests/test_Config.py
@@ -72,7 +72,7 @@ def test_parser_fallback():
>>> confname = os.path.join(tmpdir, 'gbp.conf')
>>> parser.config_files = [confname]
>>> f = open(confname, 'w')
- >>> f.write('[foo]\\nthere = is\\n[git-foo]\\nno = truth\\n')
+ >>> f.write('[DEFAULT]\\nthere = was\\n[foo]\\nthere = is\\n[git-foo]\\nno = truth\\n')
>>> f.close()
>>> parser._parse_config_files()
>>> parser.config['there']