tests/test-fix.t
changeset 42008 7f6b375a8903
parent 41126 d8f5c615e811
child 42194 0da689a60163
--- a/tests/test-fix.t	Tue Mar 19 16:26:52 2019 +0300
+++ b/tests/test-fix.t	Thu Mar 21 18:35:39 2019 -0700
@@ -354,6 +354,10 @@
 
   $ printf "modified!!!\n" > modified.whole
   $ printf "added\n" > added.whole
+
+Listing the files explicitly causes untracked files to also be fixed, but
+ignored files are still unaffected.
+
   $ hg fix --working-dir *.whole
 
   $ hg status --all
@@ -366,13 +370,12 @@
   I ignored.whole
   C .hgignore
 
-It would be better if this also fixed the unknown file.
   $ cat *.whole
   ADDED
   CLEAN
   ignored
   MODIFIED!!!
-  unknown
+  UNKNOWN
 
   $ cd ..