FSReadStream >> next: count
��� | result |
��� result := ByteArray new: count.
��� handle at: position read: result startingAt: 1 count: count.
��� position := position + 1.
���� ^ result


shouldn't be

FSReadStream >> next: count
��� | result |
��� result := ByteArray new: count.
��� handle at: position read: result startingAt: 1 count: count.
��� position := position + count.
���� ^ result

At least with that (among some extensions) Fuel tests pass with FS :)

Cheers

--
Mariano
http://marianopeck.wordpress.com