Il 12/10/2013 21:17, Holger Hans Peter Freyther ha scritto: > On Sat, Oct 12, 2013 at 09:00:27PM +0200, Holger Hans Peter Freyther wrote: >> On Sat, Oct 12, 2013 at 06:30:19PM +0200, Paolo Bonzini wrote: >>> Can you guys look at what caused the double sharp? :) >> >> probably 0f550663b46a9785c353dbab8b2721f8b5620ce0 :) > > not beautiful... but what about this? > > > diff --git a/packages/sunit/SUnit.st b/packages/sunit/SUnit.st > index 38a872b..871f541 100644 > --- a/packages/sunit/SUnit.st > +++ b/packages/sunit/SUnit.st > @@ -1121,8 +1121,10 @@ When you are writing a test case method, send #assert: > aBoolean when you want to > <category: 'Printing'> > aStream > nextPutAll: self class printString; > - nextPutAll: '>>#'; > - nextPutAll: testSelector printString. > + nextPutAll: '>>'; > + nextPutAll: (testSelector isNil > + ifTrue: [#nil] > + ifFalse: [testSelector]) printString.
I think you do not need this, ">>nil" is fine. Paolo _______________________________________________ help-smalltalk mailing list help-smalltalk@gnu.org https://lists.gnu.org/mailman/listinfo/help-smalltalk