diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-19 17:47:16 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-19 17:47:16 +0100 |
commit | d5054fdb1766cb035a1186c3cef4a14472fee98d (patch) | |
tree | d0fde9a9becca60fba4b5b79a32bd152d751f5fd /git | |
parent | aaa84341f876927b545abdc674c811d60af00561 (diff) | |
download | gitpython-d5054fdb1766cb035a1186c3cef4a14472fee98d.tar.gz |
Fixed configuration file test - release call was missing.
Once again, __del__ is not being called as usual anymore in python 3 ... .
Diffstat (limited to 'git')
-rw-r--r-- | git/test/test_config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/test/test_config.py b/git/test/test_config.py index 286d151e..fc2b87b6 100644 --- a/git/test/test_config.py +++ b/git/test/test_config.py @@ -73,6 +73,7 @@ class TestBase(TestCase): assert r_config.has_section(sname) assert r_config.has_option(sname, oname) assert r_config.get(sname, oname) == val + w_config.release() # END for each filename def test_multi_line_config(self): |