|
@@ -64,7 +64,8 @@ class GitClientTests(TestCase):
|
|
|
|
|
|
def test_fetch_pack_none(self):
|
|
|
self.rin.write(
|
|
|
- '008855dcc6bf963f922e1ed5c4bbaaefcfacef57b1d7 HEAD.multi_ack thin-pack side-band side-band-64k ofs-delta shallow no-progress include-tag\n'
|
|
|
+ '008855dcc6bf963f922e1ed5c4bbaaefcfacef57b1d7 HEAD.multi_ack thin-pack '
|
|
|
+ 'side-band side-band-64k ofs-delta shallow no-progress include-tag\n'
|
|
|
'0000')
|
|
|
self.rin.seek(0)
|
|
|
self.client.fetch_pack('bla', lambda heads: [], None, None, None)
|
|
@@ -141,5 +142,6 @@ class SSHGitClientTests(TestCase):
|
|
|
|
|
|
def test_alternative_command_path(self):
|
|
|
self.client.alternative_paths['upload-pack'] = '/usr/lib/git/git-upload-pack'
|
|
|
- self.assertEquals('/usr/lib/git/git-upload-pack', self.client._get_cmd_path('upload-pack'))
|
|
|
+ self.assertEquals('/usr/lib/git/git-upload-pack',
|
|
|
+ self.client._get_cmd_path('upload-pack'))
|
|
|
|