##// END OF EJS Templates
py3: pass the path in hg.repository() as bytes...
Pulkit Goyal -
r32894:ec9ed269 default
parent child Browse files
Show More
@@ -1,3 +1,4 b''
1 test-ancestor.py
1 test-check-execute.t
2 test-check-execute.t
2 test-check-shbang.t
3 test-check-shbang.t
3 test-contrib-check-code.t
4 test-contrib-check-code.t
@@ -225,7 +225,7 b' dagtests = ['
225 def test_gca():
225 def test_gca():
226 u = uimod.ui.load()
226 u = uimod.ui.load()
227 for i, dag in enumerate(dagtests):
227 for i, dag in enumerate(dagtests):
228 repo = hg.repository(u, 'gca%d' % i, create=1)
228 repo = hg.repository(u, b'gca%d' % i, create=1)
229 cl = repo.changelog
229 cl = repo.changelog
230 if not util.safehasattr(cl.index, 'ancestors'):
230 if not util.safehasattr(cl.index, 'ancestors'):
231 # C version not available
231 # C version not available
General Comments 0
You need to be logged in to leave comments. Login now