#OTHER by mawalch
authormawalch
Wed, 12 Jul 2017 16:13:05 +0200
changeset 4162 3a7f6aa12b81
parent 4161 01a629e181c4
child 4163 00ff0d34f206
#OTHER by mawalch Update package name in documentation.
InstrumentationContext.st
--- a/InstrumentationContext.st	Tue Jul 11 18:29:30 2017 +0200
+++ b/InstrumentationContext.st	Wed Jul 12 16:13:05 2017 +0200
@@ -144,8 +144,8 @@
     self new run:aBlock.
 
     "
-     Smalltalk loadPackage:'exept:regression'.
-     BTree withAllPrivateClasses 
+     Smalltalk loadPackage:'stx/goodies:regression'.
+     BTree withAllPrivateClasses
         do:[:cls | cls recompileUsingCompilerClass:InstrumentingCompiler].
      InstrumentationContext
         run:[ RegressionTests::BinaryTreeTester suite run ].
@@ -155,6 +155,7 @@
     "
 
     "Created: / 08-08-2011 / 15:47:10 / cg"
+    "Modified (comment): / 12-07-2017 / 16:09:12 / mawalch"
 !
 
 runForCoverage:aBlock
@@ -163,8 +164,8 @@
     self new runForCoverage:aBlock.
 
     "
-     Smalltalk loadPackage:'exept:regression'.
-     BTree withAllPrivateClasses 
+     Smalltalk loadPackage:'stx/goodies:regression'.
+     BTree withAllPrivateClasses
         do:[:cls | cls recompileUsingCompilerClass:InstrumentingCompiler].
      InstrumentationContext
         run:[ RegressionTests::BinaryTreeTester suite run ].
@@ -174,6 +175,7 @@
     "
 
     "Created: / 08-08-2011 / 15:47:10 / cg"
+    "Modified (comment): / 12-07-2017 / 16:09:28 / mawalch"
 ! !
 
 !InstrumentationContext class methodsFor:'utilities'!