*** empty log message ***
authorsr
Fri, 17 Mar 2017 15:12:41 +0100
changeset 327 8e05bbea7b0a
parent 321 ef82ce6fb3e9
child 328 1bf7295a0b9a
*** empty log message ***
quickSelfTest/SelfTest.st
--- a/quickSelfTest/SelfTest.st	Wed Nov 09 04:12:36 2016 +0100
+++ b/quickSelfTest/SelfTest.st	Fri Mar 17 15:12:41 2017 +0100
@@ -55,14 +55,14 @@
 
 Stdout showCR:'Loading regression tests...'.
 
-"To add a new test please edit exept_regression>>testCaseNamesWithoutNamespace"
-Smalltalk fileInClass:#'exept_regression' package:'exept:regression'.
-(Smalltalk at: #'exept_regression') isNil ifTrue:[
-    Stdout showCR:('ERROR: Ouch - missing class: "exept_regression"').
+"To add a new test please edit stx_goodies_regression>>testCaseNamesWithoutNamespace"
+Smalltalk fileInClass:#'stx_goodies_regression' package:'stx:goodies/regression'.
+(Smalltalk at: #'stx_goodies_regression') isNil ifTrue:[
+    Stdout showCR:('ERROR: Ouch - missing class: "stx_goodies_regression"').
     Smalltalk exit: 1.
 ].
 
-(Smalltalk at: #'exept_regression') testCaseNamesWithoutNamespace do:[:className |
+(Smalltalk at: #'stx_goodies_regression') testCaseNamesWithoutNamespace do:[:className |
     |fullName|
 
     fullName := ('RegressionTests::',className).
@@ -70,7 +70,7 @@
     Error handle:[:ex |
 	Stdout showCR:('**** Ouch - error while loading class: "',className,'"').
     ] do:[
-	Smalltalk fileInClass:fullName package:'exept:regression'.
+	Smalltalk fileInClass:fullName package:'stx:goodies/regression'.
     ].
     (Smalltalk classNamed:fullName) isNil ifTrue:[
 	Stdout showCR:('**** Ouch - missing class: "',fullName,'"').