theseion / Fuel

Fuel, the Smalltalk object serializer
https://theseion.github.io/Fuel
MIT License
26 stars 12 forks source link

Reduce run time of #testWideString #282

Closed theseion closed 1 year ago

theseion commented 1 year ago

Improved version:

FLGZippedBasicSerializationTest>>testWideString
    | wideString |
    wideString := WideString
        streamContents: [ :stream |
            256
                to: 1000
                do: [ :int | stream nextPut: int asCharacter ] ].

    self
        shouldnt: [ self assertSerializationEqualityOf: wideString ]
        raise: Error
theseion commented 1 year ago

Done