diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/git/test_config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/git/test_config.py b/test/git/test_config.py index c5a8dc2c..843da723 100644 --- a/test/git/test_config.py +++ b/test/git/test_config.py @@ -77,6 +77,8 @@ class TestBase(TestCase): num_options += 1 val = r_config.get(section, option) assert val + assert "\n" not in option + assert "\n" not in val # writing must fail self.failUnlessRaises(IOError, r_config.set, section, option, None) |