compiler/tests/PPCOverlappingTokensTest.st
changeset 534 a949c4fe44df
parent 529 439c4057517f
child 535 a8feb0f47574
--- a/compiler/tests/PPCOverlappingTokensTest.st	Wed Aug 26 23:34:48 2015 +0100
+++ b/compiler/tests/PPCOverlappingTokensTest.st	Sat Aug 29 07:56:14 2015 +0100
@@ -46,9 +46,8 @@
         profile: true;
         yourself.
         
-    configuration := PPCTokenizingConfiguration new
-        options: options;
-        yourself.
+    configuration := PPCTokenizingConfiguration new.
+    configuration context options: options.
         
     self cleanClass.
     
@@ -58,7 +57,7 @@
     keywordToken := (#word asParser plus, $: asParser) token trim name: 'kw'; yourself.
     assignmentToken := (':=' asParser) token trim name: 'assignment'; yourself.
 
-    "Modified: / 24-08-2015 / 23:40:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-08-2015 / 14:19:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 tearDown