diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 22:34:09 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 22:34:09 +0200 |
commit | 07eaa4ce2696a88ec0db6e91f191af1e48226aca (patch) | |
tree | 3ee971db1e9568d4fc81e7c8ea855d701b225543 /test/git/test_repo.py | |
parent | 4251bd59fb8e11e40c40548cba38180a9536118c (diff) | |
download | gitpython-07eaa4ce2696a88ec0db6e91f191af1e48226aca.tar.gz |
improved repo documentation
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r-- | test/git/test_repo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py index 6b82d029..c0236799 100644 --- a/test/git/test_repo.py +++ b/test/git/test_repo.py @@ -193,10 +193,10 @@ class TestRepo(object): assert_true(git.called) def test_archive_tar(self): - self.repo.archive_tar + assert self.repo.archive_tar() def test_archive_tar_gz(self): - self.repo.archive_tar_gz + assert self.repo.archive_tar_gz() @patch('git.utils.touch') def test_enable_daemon_serve(self, touch): |