A new version of KernelTests was added to project The Inbox:
http://source.squeak.org/inbox/KernelTests-fbs.169.mcz==================== Summary ====================
Name: KernelTests-fbs.169
Author: fbs
Time: 22 December 2010, 8:47:05.09 am
UUID: c08d19d9-0161-7e44-9952-b0a4c19fdfcd
Ancestors: KernelTests-ul.168
Use Character space instead of $ to avoid Decompiler tests failing.
=============== Diff against KernelTests-ul.168 ===============
Item was changed:
----- Method: MethodPragmaTest>>testCompileCharacter (in category 'testing-compiler') -----
testCompileCharacter
self assertPragma: 'foo: $a' givesKeyword: #foo: arguments: #( $a ).
+ self assertPragma: 'foo: $ ' givesKeyword: #foo: arguments: { Character space }.!
- self assertPragma: 'foo: $ ' givesKeyword: #foo: arguments: #( $ ).!