compiler/tests/PPCUniversalTest.st
changeset 525 751532c8f3db
parent 516 3b81c9e53352
parent 524 f6f68d32de73
child 529 439c4057517f
--- a/compiler/tests/PPCUniversalTest.st	Tue Aug 18 22:46:10 2015 +0100
+++ b/compiler/tests/PPCUniversalTest.st	Mon Aug 24 15:56:20 2015 +0100
@@ -32,7 +32,7 @@
 
     parserClass := (Smalltalk at: arguments parserName ifAbsent: [nil]).
     parserClass notNil ifTrue:[ 
-        parserClass removeFromSystem
+        "parserClass removeFromSystem"
     ].
 
     "Modified: / 24-07-2015 / 19:21:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -446,7 +446,6 @@
     parser := (#letter asParser, (#digit asParser / #letter asParser) star) trimmingToken compileWithConfiguration: configuration.
 
     self assert: parser class methodDictionary size = 4.
-
     self assert: parser parse: 'foo'.
     self assert: result inputValue = 'foo'.