##// END OF EJS Templates
tests: use inline Python instead of sed to add trailing whitespace...
Augie Fackler -
r38775:8623a6c9 stable
parent child Browse files
Show More
@@ -54,8 +54,10 b' default context'
54 54 trailing whitespace
55 55
56 56 $ cp a a.orig
57 $ sed 's/^dd$/dd \r/' a >a.new
58 $ mv a.new a
57 >>> with open('a', 'rb') as f:
58 ... data = f.read()
59 >>> with open('a', 'wb') as f:
60 ... f.write(data.replace('dd', 'dd \r'))
59 61 $ hg diff --nodates
60 62 \x1b[0;1mdiff -r cf9f4ba66af2 a\x1b[0m (esc)
61 63 \x1b[0;31;1m--- a/a\x1b[0m (esc)
General Comments 0
You need to be logged in to leave comments. Login now