##// END OF EJS Templates
tests: suppress output from write()...
Gregory Szorc -
r43277:f1dffb37 default
parent child Browse files
Show More
@@ -390,7 +390,7 b' Upgrading a repository to generaldelta w'
390 >>> random.seed(0) # have a reproducible content
390 >>> random.seed(0) # have a reproducible content
391 >>> with open("f2", "w") as f:
391 >>> with open("f2", "w") as f:
392 ... for i in range(100000):
392 ... for i in range(100000):
393 ... f.write("%d\n" % random.randint(1000000000, 9999999999))
393 ... f.write("%d\n" % random.randint(1000000000, 9999999999)) and None
394 $ hg -q commit -A -m 'add f2'
394 $ hg -q commit -A -m 'add f2'
395
395
396 make sure we have a .d file
396 make sure we have a .d file
General Comments 0
You need to be logged in to leave comments. Login now