##// END OF EJS Templates
py3: use range instead of xrange in tests/test-commandserver.t...
Pulkit Goyal -
r36303:257071fd default
parent child Browse files
Show More
@@ -411,7 +411,7 b' cache of non-public revisions should be '
411 ... # load _phasecache._phaserevs and _phasesets
411 ... # load _phasecache._phaserevs and _phasesets
412 ... runcommand(server, ['log', '-qr', 'draft()'])
412 ... runcommand(server, ['log', '-qr', 'draft()'])
413 ... # create draft commits by another process
413 ... # create draft commits by another process
414 ... for i in xrange(5, 7):
414 ... for i in range(5, 7):
415 ... f = open('a', 'ab')
415 ... f = open('a', 'ab')
416 ... f.seek(0, os.SEEK_END)
416 ... f.seek(0, os.SEEK_END)
417 ... f.write('a\n')
417 ... f.write('a\n')
General Comments 0
You need to be logged in to leave comments. Login now