#BUGFIX by mawalch
authormawalch
Tue, 17 May 2016 11:04:31 +0200
changeset 1428 042022c52f15
parent 1427 cbd1a7953969
child 1429 0201c6bd39a4
#BUGFIX by mawalch class: RegressionTests::StringTests changed: #test11_IsEmpty Do not over-allocate on 32 bit. Fix example code.
RegressionTests__StringTests.st
--- a/RegressionTests__StringTests.st	Fri May 13 16:04:54 2016 +0200
+++ b/RegressionTests__StringTests.st	Tue May 17 11:04:31 2016 +0200
@@ -233,7 +233,7 @@
     self assert:((String new:0) isEmpty).
     self assert:((String new:17 withAll:nul) isEmpty not).
 
-    32 timesRepeat:[
+    30 timesRepeat:[
         |s|
 
         s := String new:(n + 17).
@@ -243,7 +243,7 @@
     self assert:((String new:17 withAll:nul) isEmpty not).
     self assert:((String new:0 withAll:nul) isEmpty).
     "
-     self new test10_Contains8BitCharacters"
+     self new test11_IsEmpty"
 !
 
 test12_Comparison