Re: [Pharo-project] ReadWriteStream contents fails

2010-06-11 Thread Niko Schwarz
I got confused about this because of what printString shows. At least printString could show what is intended to be in the stream, not more. Niko 2010/6/11 Henrik Sperre Johansen : > On 05.06.2010 15:30, Niko Schwarz wrote: > > Hi list, > > http://code.google.com/p/pharo/issues/detail?id=2508&can

Re: [Pharo-project] ReadWriteStream contents fails

2010-06-10 Thread Henrik Sperre Johansen
On 05.06.2010 15:30, Niko Schwarz wrote: Hi list, http://code.google.com/p/pharo/issues/detail?id=2508&can=4&colspec=ID%20Type%20Status%20Summary%20Milestone%20Difficulty The following mini unit test fails: readWriteStreamShouldHonorStartIndex self assert: ( (ReadWriteStream on: 'hallo'

[Pharo-project] ReadWriteStream contents fails

2010-06-05 Thread Niko Schwarz
Hi list, http://code.google.com/p/pharo/issues/detail?id=2508&can=4&colspec=ID%20Type%20Status%20Summary%20Milestone%20Difficulty The following mini unit test fails: readWriteStreamShouldHonorStartIndex self assert: ( (ReadWriteStream on: 'hallo' from: 3 to: 4) contents = 'll') Instead, con