Comment #2 on issue 3478 by
[hidden email]: [Failing Test]
Graphics.Tests.Files.BMPReadWriterTest.testBmp24Bit
http://code.google.com/p/pharo/issues/detail?id=3478Maybe because Andreas changed the test too and this was not integrated into
Pharo:
See
http://lists.squeakfoundation.org/pipermail/squeak-dev/2010-December/156043.htmlPharo:
testBmp24Bit
...
self assert: (form pixelValueAt: 1 @ 1) = 4278190080
It fails because the value is "4278190081"
Squeak:
testBmp24Bit
...
self assert: (form pixelValueAt: 1@1) = 16rFF000001.
So if I'm using the test from Squeak (which is more readable anyway)
then it is green.