The Trunk: ToolsTests-mt.81.mcz

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

The Trunk: ToolsTests-mt.81.mcz

commits-2
Marcel Taeumel uploaded a new version of ToolsTests to project The Trunk:
http://source.squeak.org/trunk/ToolsTests-mt.81.mcz

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

Name: ToolsTests-mt.81
Author: mt
Time: 6 February 2018, 10:22:44.744461 am
UUID: 036526c0-8a4d-479f-9304-e5b9b91db212
Ancestors: ToolsTests-eem.80

Adapt a test due to the latest changes.

=============== Diff against ToolsTests-eem.80 ===============

Item was changed:
  ----- Method: WeakSetInspectorTest>>testSymbolTableM6812 (in category 'testing') -----
  testSymbolTableM6812
  "this test is related to http://bugs.squeak.org/view.php?id=6812"
 
  | aWeakSet anInspector fieldSize |
  aWeakSet := (Symbol classPool at: #SymbolTable).
+ anInspector := aWeakSet inspectorClass inspect: aWeakSet.
- anInspector := (ToolSet inspectorClassOf: aWeakSet) inspect: aWeakSet.
 
  fieldSize := anInspector fieldList size.
  Smalltalk garbageCollect.
  self assert: fieldSize = anInspector fieldList size.
  !