Hey, the following snippet ``` "test float to bytes" { val buffer = Buffer() buffer.writeFloat(0.999f) buffer.readFloat() shouldBe 0.999f } ``` gives this result. ``` AssertionFailedError: Expected :0.999 Actual :0.9990000128746033 ``` JVM works fine.