##// END OF EJS Templates
tests: add missing b prefixes and fix a %s to %d in test-revset.t...
Augie Fackler -
r36600:27911e0f default
parent child Browse files
Show More
@@ -55,7 +55,7 b" these predicates use '\\0' as a separator"
55 55 > expr = revsetlang.formatspec(fmt, list(args))
56 56 > if ui.verbose:
57 57 > tree = revsetlang.parse(expr, lookup=repo.__contains__)
58 > ui.note(revsetlang.prettyformat(tree), "\n")
58 > ui.note(revsetlang.prettyformat(tree), b"\n")
59 59 > if opts["optimize"]:
60 60 > opttree = revsetlang.optimize(revsetlang.analyze(tree))
61 61 > ui.note(b"* optimized:\n", revsetlang.prettyformat(opttree),
@@ -65,7 +65,7 b" these predicates use '\\0' as a separator"
65 65 > if ui.verbose:
66 66 > ui.note(b"* set:\n", smartset.prettyformat(revs), b"\n")
67 67 > for c in revs:
68 > ui.write(b"%s\n" % c)
68 > ui.write(b"%d\n" % c)
69 69 > EOF
70 70 $ cat <<EOF >> $HGRCPATH
71 71 > [extensions]
General Comments 0
You need to be logged in to leave comments. Login now