##// END OF EJS Templates
tests: make test-status.t compatible with test-check-module-imports.t...
Pulkit Goyal -
r42010:2105ed01 default
parent child Browse files
Show More
@@ -290,7 +290,8 b' hg status -A:'
290 290
291 291 $ hg status -A -Tpickle > pickle
292 292 >>> from __future__ import print_function
293 >>> from mercurial.util import pickle
293 >>> from mercurial import util
294 >>> pickle = util.pickle
294 295 >>> data = sorted((x[b'status'].decode(), x[b'path'].decode()) for x in pickle.load(open("pickle", r"rb")))
295 296 >>> for s, p in data: print("%s %s" % (s, p))
296 297 ! deleted
General Comments 0
You need to be logged in to leave comments. Login now