diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-04 22:52:36 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-04 23:51:51 +0200 |
| commit | 3379127de7642a80687487c41e459e0cee9ec44f (patch) | |
| tree | ae4f8d724ac857288dec901e080ffb6126d968c9 /git/test/test_remote.py | |
| parent | 87c7a6f1b166694b1d789b9d6ff8fb02585f099f (diff) | |
| download | GitPython-3379127de7642a80687487c41e459e0cee9ec44f.tar.gz GitPython-3379127de7642a80687487c41e459e0cee9ec44f.zip | |
Fetch info can now deal much better with non-default ref specs, see #23, #24, #25
Diffstat (limited to 'git/test/test_remote.py')
| -rw-r--r-- | git/test/test_remote.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py index 8ae9fe43..cef8687b 100644 --- a/git/test/test_remote.py +++ b/git/test/test_remote.py @@ -256,7 +256,7 @@ class TestRemote(TestBase): shutil.rmtree(other_repo_dir) # END test and cleanup - def _test_push_and_pull(self,remote, rw_repo, remote_repo): + def _verify_push_and_pull(self,remote, rw_repo, remote_repo): # push our changes lhead = rw_repo.head lindex = rw_repo.index @@ -407,7 +407,7 @@ class TestRemote(TestBase): # END for each rename ( back to prev_name ) # PUSH/PULL TESTING - self._test_push_and_pull(remote, rw_repo, remote_repo) + self._verify_push_and_pull(remote, rw_repo, remote_repo) # FETCH TESTING # Only for remotes - local cases are the same or less complicated |
