浏览代码

Attempt to fix tests when dulwich isn't installed. Fixes: #919

Jelmer Vernooij 3 年之前
父节点
当前提交
a2ff813980
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      dulwich/tests/test_repository.py

+ 2 - 2
dulwich/tests/test_repository.py

@@ -648,7 +648,7 @@ exit 0
 
         pre_commit_contents = """#!%(executable)s
 import sys
-sys.path.extend(':'.join(%(path)s))
+sys.path.extend(%(path)r)
 from dulwich.repo import Repo
 
 with open('foo', 'w') as f:
@@ -656,7 +656,7 @@ with open('foo', 'w') as f:
 
 r = Repo('.')
 r.stage(['foo'])
-""" % {'executable': sys.executable, 'path': repr(sys.path)}
+""" % {'executable': sys.executable, 'path': sys.path}
 
         repo_dir = os.path.join(self.mkdtemp())
         self.addCleanup(shutil.rmtree, repo_dir)