diff options
author | Maximiliano Curia <maxy@gnuservers.com.ar> | 2014-09-29 17:12:22 +0200 |
---|---|---|
committer | Maximiliano Curia <maxy@gnuservers.com.ar> | 2014-09-29 17:12:22 +0200 |
commit | 9d300e20f30c057bbacffbb9a8aa06e6da5e2691 (patch) | |
tree | abc9faafc52018525d4d3d717a903ac3b89d7ff5 /git/test/db/cmd/test_base.py | |
parent | a82b0df2f25afba1b5810a0aaac64cd3e7d1b588 (diff) | |
download | gitpython-9d300e20f30c057bbacffbb9a8aa06e6da5e2691.tar.gz |
test_fetch_info error, FETCH_HEAD uses tabs
Diffstat (limited to 'git/test/db/cmd/test_base.py')
-rw-r--r-- | git/test/db/cmd/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/db/cmd/test_base.py b/git/test/db/cmd/test_base.py index 9eee7223..2b9d9f69 100644 --- a/git/test/db/cmd/test_base.py +++ b/git/test/db/cmd/test_base.py @@ -37,7 +37,7 @@ class TestBase(RepoBase): def test_fetch_info(self): # assure we can handle remote-tracking branches - fetch_info_line_fmt = "c437ee5deb8d00cf02f03720693e4c802e99f390 not-for-merge %s '0.3' of git://github.com/gitpython-developers/GitPython" + fetch_info_line_fmt = "c437ee5deb8d00cf02f03720693e4c802e99f390\tnot-for-merge\t%s '0.3' of git://github.com/gitpython-developers/GitPython" remote_info_line_fmt = "* [new branch] nomatter -> %s" fi = CmdFetchInfo._from_line(self.rorepo, remote_info_line_fmt % "local/master", |