compiler/tests/PEGFsaMinimizationTest.st
changeset 542 bb97dcbe2359
parent 537 fb212e14d1f4
--- a/compiler/tests/PEGFsaMinimizationTest.st	Tue Sep 08 01:31:37 2015 +0100
+++ b/compiler/tests/PEGFsaMinimizationTest.st	Tue Sep 08 02:06:11 2015 +0100
@@ -135,9 +135,9 @@
 testMinimze4
     | merged |
 
-    " JK: please remove this once fixed... "
-    ((Smalltalk respondsTo:#isSmalltalkX) and:[ Smalltalk isSmalltalkX ]) 
-        ifTrue:[ self skipIf: true description: 'never worked, JK?' ]. 
+    ((Smalltalk respondsTo:#isSmalltalkX) and:[ Smalltalk isSmalltalkX ]) ifTrue:[  
+        self skipIf: true description: 'JK, remove this once fixed'.
+    ].   
 
 
     fsa addState: a.
@@ -168,7 +168,7 @@
     self assert: merged transitions size = 1.
     self assert: merged destination isFinal.
 
-    "Modified: / 07-09-2015 / 07:48:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 08-09-2015 / 01:52:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 testStateEquals