mercurial/HGStXTests.st
changeset 813 dab0996374c8
parent 809 1bbcf42198c6
child 814 f082e56d6ff7
--- a/mercurial/HGStXTests.st	Fri Feb 09 12:06:00 2018 +0000
+++ b/mercurial/HGStXTests.st	Mon Feb 12 22:31:32 2018 +0000
@@ -2218,7 +2218,8 @@
 test_commit_29
     "
     Simple commit amending. Check that commit cannot be amended
-    when not commiting on top of head revision...
+    when not commiting on top of head revision (but only if
+    evolve is not enabled, with evolve it's possible)
     "
 
     | repo pm ct |
@@ -2226,6 +2227,7 @@
     UserPreferences current hgUseSharedRepositories: true. 
 
     repo := self repositoryNamed: 'mocks/hg/p2' revision: '2'.
+    self skipIf: repo hasExtensionEvolve description: 'evolve extension is enabled'.
     self assert: (Smalltalk loadPackage:'mocks:hg/p2').
     self dumpRepositoryLog: repo.
 
@@ -2242,6 +2244,7 @@
     self dumpRepositoryLog: repo.
 
     "Created: / 27-08-2015 / 18:37:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 22-03-2018 / 23:30:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 test_commit_30a