diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-22 15:36:41 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-22 15:36:41 +0200 |
| commit | 9c3bbc43d097656b54c808290ce0c656d127ce47 (patch) | |
| tree | 514765d1b0d7517f63d4b506111aa77154ab5fe0 /test/git/test_base.py | |
| parent | bb0ac304431e8aed686a8a817aaccd74b1ba4f24 (diff) | |
| download | GitPython-9c3bbc43d097656b54c808290ce0c656d127ce47.tar.gz GitPython-9c3bbc43d097656b54c808290ce0c656d127ce47.zip | |
Implemented decorators, tests pass at least
Diffstat (limited to 'test/git/test_base.py')
| -rw-r--r-- | test/git/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_base.py b/test/git/test_base.py index 9f4cfa05..c2e199b3 100644 --- a/test/git/test_base.py +++ b/test/git/test_base.py @@ -109,7 +109,7 @@ class TestBase(TestBase): def test_with_bare_rw_repo(self, bare_rw_repo): assert bare_rw_repo.config_reader("repository").getboolean("core", "bare") - @with_rw_repo + @with_rw_repo(working_tree_ref='0.1.6') def test_with_rw_repo(self, rw_repo): assert not rw_repo.config_reader("repository").getboolean("core", "bare") |
