mercurial/HGTests.st
branchhg-command-server-support
changeset 235 3d8ef499d7d9
parent 226 e2f6e7330c37
child 247 bf5bfe409ff8
--- a/mercurial/HGTests.st	Sun Mar 03 20:45:13 2013 +0000
+++ b/mercurial/HGTests.st	Sun Mar 03 23:58:51 2013 +0000
@@ -739,7 +739,10 @@
     repoCDir := HGRepositoriesResource current directoryForRepositoryNamed: 'test_push_01_C' init: false.
     repoC := repoA cloneTo: repoCDir.
 
-    self should: [ repoA push: '/some/funny/directory' ] raise: HGError suchThat:[:ex|ex description startsWith: 'repository'].
+    self should: [ repoA push: '/some/funny/directory' ] raise: HGError 
+        suchThat:[:ex|
+            ex description startsWith: 'repository'
+    ].
 
 
     log := OrderedCollection new.
@@ -764,6 +767,7 @@
 
     "Created: / 04-02-2013 / 13:30:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 04-02-2013 / 23:37:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (format): / 03-03-2013 / 23:55:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !HGTests methodsFor:'tests - wc'!