tests/test-phases.t
changeset 44618 97265a0c0a42
parent 44004 9c1fd975e9ac
child 45212 41021660baa1
--- a/tests/test-phases.t	Tue Mar 24 15:21:11 2020 +0530
+++ b/tests/test-phases.t	Wed Mar 25 20:33:15 2020 +0530
@@ -896,11 +896,13 @@
   $ hg --config "phases.new-commit=internal" commit -m "my test internal commit" 2>&1 | grep ProgrammingError
   ** ProgrammingError: this repository does not support the internal phase
       raise error.ProgrammingError(msg)
-  mercurial.error.ProgrammingError: this repository does not support the internal phase
+  mercurial.error.ProgrammingError: this repository does not support the internal phase (no-chg !)
+  ProgrammingError: this repository does not support the internal phase (chg !)
   $ hg --config "phases.new-commit=archived" commit -m "my test archived commit" 2>&1 | grep ProgrammingError
   ** ProgrammingError: this repository does not support the archived phase
       raise error.ProgrammingError(msg)
-  mercurial.error.ProgrammingError: this repository does not support the archived phase
+  mercurial.error.ProgrammingError: this repository does not support the archived phase (no-chg !)
+  ProgrammingError: this repository does not support the archived phase (chg !)
 
   $ cd ..