Andreas Raab uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ar.129.mcz==================== Summary ====================
Name: CollectionsTests-ar.129
Author: ar
Time: 11 January 2010, 8:01:55.696 pm
UUID: 24c53ce0-1569-554d-9e82-70b4ea3caaef
Ancestors: CollectionsTests-nice.128
Test for withNoLineLongerThan: bug.
=============== Diff against CollectionsTests-nice.128 ===============
Item was added:
+ ----- Method: StringTest>>testWithNoLineLongerThan (in category 'tests - converting') -----
+ testWithNoLineLongerThan
+ "self run: #testWithNoLineLongerThan"
+ self assert: ('Hello World' withNoLineLongerThan: 5) = ('Hello', String cr, 'World').
+ self shouldnt:[('Hello', String cr, String cr,'World') withNoLineLongerThan: 5] raise: Error.
+ !