Sfoglia il codice sorgente

Also fix dulwich.test.test_greenthreads on python3.4.

Jelmer Vernooij 9 anni fa
parent
commit
cea092d1a1
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      dulwich/tests/test_greenthreads.py

+ 2 - 2
dulwich/tests/test_greenthreads.py

@@ -51,9 +51,9 @@ if gevent_support:
 skipmsg = "Gevent library is not installed"
 
 def create_commit(marker=None):
-    blob = Blob.from_string(b'The blob content %s' % marker)
+    blob = Blob.from_string(b'The blob content ' + marker)
     tree = Tree()
-    tree.add(b"thefile %s" % marker, 0o100644, blob.id)
+    tree.add(b"thefile " + marker, 0o100644, blob.id)
     cmt = Commit()
     cmt.tree = tree.id
     cmt.author = cmt.committer = b"John Doe <john@doe.net>"