compiler/tests/PPCNodeTest.st
changeset 538 16e8536f5cfb
parent 537 fb212e14d1f4
--- a/compiler/tests/PPCNodeTest.st	Mon Sep 07 08:20:46 2015 +0100
+++ b/compiler/tests/PPCNodeTest.st	Mon Sep 07 11:53:38 2015 +0100
@@ -147,14 +147,14 @@
 !
 
 setUp
-    compiler := PPCCompiler default.
+    compiler := PPCCompiler new.
     compiler context options generate:false.
 
-    "Modified: / 28-08-2015 / 14:19:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 07-09-2015 / 11:38:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 treeFrom: parser
-    ^ parser compileUsingCompiler: compiler
+    ^ compiler compile: parser
 
     "Modified: / 07-09-2015 / 10:06:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !