#BUGFIX by sr
authorsr
Wed, 11 Oct 2017 13:56:58 +0200
changeset 1790 edcbe6a8ae34
parent 1789 c24ce973ecc2
child 1791 7378294bb6c6
#BUGFIX by sr class: RegressionTests::DelayTest changed: #test2
RegressionTests__DelayTest.st
--- a/RegressionTests__DelayTest.st	Wed Oct 11 13:55:28 2017 +0200
+++ b/RegressionTests__DelayTest.st	Wed Oct 11 13:56:58 2017 +0200
@@ -12,12 +12,6 @@
 !
 
 
-!DelayTest class methodsFor:'others'!
-
-version_CVS
-    ^ '$Header$'
-! !
-
 !DelayTest class methodsFor:'queries'!
 
 coveredClasses
@@ -80,7 +74,7 @@
         ]
     ] forkAt:(Processor activePriority + 1).
 
-    self assert:(n == 0) description:'thread with delays should not have started yet'.
+    self assert:(n == 0) description:'thread with delays should not have started yet, because its first action is a delay'.
     Delay waitForSeconds:(delayMultiplier * 1.1).
     self assert:(n == 10) description:('thread with delays should have finished by now (n=%d)' bindWith:n).
 
@@ -143,5 +137,9 @@
 
 version
     ^ '$Header$'
+!
+
+version_CVS
+    ^ '$Header$'
 ! !