compiler/tests/PPCompiledExpressionGrammarResource.st
changeset 459 4751c407bb40
parent 452 9f4558b3be66
child 460 87a3d30ab570
--- a/compiler/tests/PPCompiledExpressionGrammarResource.st	Sun May 10 06:28:36 2015 +0100
+++ b/compiler/tests/PPCompiledExpressionGrammarResource.st	Tue May 12 01:24:03 2015 +0100
@@ -13,14 +13,14 @@
 
 setUp
     | time configuration |
-    configuration := PPCLL1Configuration new.
-    configuration arguments name:#PPCompiledExpressionGrammar.
+    configuration := PPCConfiguration universal.
+    configuration arguments name: #PPCompiledExpressionGrammar.
     
     
     time := Time millisecondsToRun: [
         PPExpressionGrammar new compileWithConfiguration: configuration.
     ].
-    Transcript crShow: 'Expression grammar compiled in: ', time asString, 'ms'.
+    Transcript show: 'Expression grammar compiled in: ', time asString, 'ms'; cr.
     
 ! !