[squeak-dev] The Trunk: CollectionsTests-cmm.196.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 30 16:44:13 UTC 2013


Chris Muller uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-cmm.196.mcz

==================== Summary ====================

Name: CollectionsTests-cmm.196
Author: cmm
Time: 30 January 2013, 10:43:47.826 am
UUID: 325b1f24-eee1-4aaa-82fc-fe7fc2cb8525
Ancestors: CollectionsTests-cmm.195

fix

=============== Diff against CollectionsTests-cmm.195 ===============

Item was changed:
  ----- Method: FloatCollectionTest>>testInternalArray (in category 'tests') -----
  testInternalArray
  	| fc internalArray |
  	fc := FloatCollection new.
  	self
  		 deny: (internalArray := fc instVarNamed: 'array') class isPointers ;
  		 assert: fc isEmpty.
  	internalArray size + 1 timesRepeat: [ fc add: 0.0 ].
  	self
+ 		 assert: fc size = (internalArray size + 1) ;
- 		 assert: fc size = internalArray size + 1 ;
  		 assert: (fc instVarNamed: 'array') size = (internalArray size * 2)!



More information about the Squeak-dev mailing list