The Trunk: Tests-topa.332.mcz

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

The Trunk: Tests-topa.332.mcz

commits-2
Tobias Pape uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-topa.332.mcz

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

Name: Tests-topa.332
Author: topa
Time: 7 October 2015, 9:02:42.601 pm
UUID: 75cf0229-128c-460e-b11c-1d38ae413fd9
Ancestors: Tests-topa.331

The error message for shadowed variables changed.

=============== Diff against Tests-topa.331 ===============

Item was changed:
  ----- Method: CompilerNotifyingTest>>testATempShadowingAnotherTemp (in category 'testing') -----
  testATempShadowingAnotherTemp
+ self setUpForErrorsIn: '| x | x := 1. ^[ | ` Name already used in this method ->`x | x ]'.
- self setUpForErrorsIn: '| x | x := 1. ^[ | ` Name is already defined ->`x | x ]'.
  self enumerateAllSelections!

Item was changed:
  ----- Method: CompilerNotifyingTest>>testTempDoubledDefined (in category 'testing') -----
  testTempDoubledDefined
+ self setUpForErrorsIn: '| x ` Name already used in this method ->`x | x := 1. ^x'.
- self setUpForErrorsIn: '| x ` Name is already defined ->`x | x := 1. ^x'.
  self enumerateAllSelections!