##// END OF EJS Templates
py3: suppress write() result and close file in test-bookmarks-pushpull.t
Yuya Nishihara -
r38625:15622e72 default
parent child Browse files
Show More
@@ -24,6 +24,7 b' test-bisect3.t'
24 24 test-blackbox.t
25 25 test-bookmarks-current.t
26 26 test-bookmarks-merge.t
27 test-bookmarks-pushpull.t
27 28 test-bookmarks-rebase.t
28 29 test-bookmarks-strip.t
29 30 test-bookmarks.t
@@ -1034,7 +1034,8 b' Pushing a really long bookmark should wo'
1034 1034 ===============================================
1035 1035
1036 1036 #if b2-binary
1037 >>> open('longname', 'w').write('wat' * 100)
1037 >>> with open('longname', 'w') as f:
1038 ... f.write('wat' * 100) and None
1038 1039 $ hg book `cat longname`
1039 1040 $ hg push -B `cat longname` ../unchanged-b
1040 1041 pushing to ../unchanged-b
General Comments 0
You need to be logged in to leave comments. Login now