tests/test-status.t
changeset 38017 6660b90805c6
parent 36039 c1e01b1d5543
child 38101 6acf41bb8d40
--- a/tests/test-status.t	Tue May 15 09:57:58 2018 -0700
+++ b/tests/test-status.t	Fri Apr 27 20:55:10 2018 +0530
@@ -465,12 +465,12 @@
 
   $ hg init repo5
   $ cd repo5
-  >>> open("010a", r"wb").write(b"\1\nfoo")
+  >>> open("010a", r"wb").write(b"\1\nfoo") and None
   $ hg ci -q -A -m 'initial checkin'
   $ hg status -A
   C 010a
 
-  >>> open("010a", r"wb").write(b"\1\nbar")
+  >>> open("010a", r"wb").write(b"\1\nbar") and None
   $ hg status -A
   M 010a
   $ hg ci -q -m 'modify 010a'