The Trunk: CollectionsTests-ul.277.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: CollectionsTests-ul.277.mcz

commits-2
Levente Uzonyi uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ul.277.mcz

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

Name: CollectionsTests-ul.277
Author: ul
Time: 28 February 2017, 7:36:37.713448 pm
UUID: 0236a67d-af75-4816-8d5a-0b79d813495e
Ancestors: CollectionsTests-ul.276

- fixed the second catch of the new #& and #| type checks

=============== Diff against CollectionsTests-ul.276 ===============

Item was changed:
  ----- Method: LinkedListTest>>test0FixtureCopyPartOfSequenceableTest (in category 'tests - fixture') -----
  test0FixtureCopyPartOfSequenceableTest
  self collectionWithoutEqualElements.
  self collectionWithoutEqualElements
  do: [ :each | self assert: (self collectionWithoutEqualElements occurrencesOf: each) = 1 ].
  self indexInForCollectionWithoutDuplicates.
  self
  assert:
+ (self indexInForCollectionWithoutDuplicates > 0 and: [ self indexInForCollectionWithoutDuplicates
+ < self collectionWithoutEqualElements size ]).
- (self indexInForCollectionWithoutDuplicates > 0 & self indexInForCollectionWithoutDuplicates)
- < self collectionWithoutEqualElements size.
  self empty.
  self assert: self empty isEmpty!