mercurial/HGTests.st
changeset 375 6ecd3ade39be
parent 360 f3d8093dd06d
child 378 5c36325d6f60
--- a/mercurial/HGTests.st	Tue Feb 18 14:22:14 2014 +0000
+++ b/mercurial/HGTests.st	Tue Feb 18 14:25:20 2014 +0000
@@ -412,7 +412,7 @@
 
     "Now, fake missing ui.username config entry"
     (repo config root includesKey: #ui) ifTrue:[
-        (repo config get:#ui) removeKey: #username ifAbsent:[nil].
+        (repo config get:#ui) removeKey: 'username' ifAbsent:[nil].
     ].
 
     "Try commit"
@@ -434,7 +434,7 @@
     "
 
     "Created: / 07-12-2012 / 15:42:52 / jv"
-    "Modified (comment): / 10-12-2012 / 03:08:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 18-02-2014 / 12:31:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 test_commit_04