diff --git a/xemantic-osc-api/src/commonTest/kotlin/type/OscDecodingTest.kt b/xemantic-osc-api/src/commonTest/kotlin/type/OscDecodingTest.kt index 59b2ebe..0792c6e 100644 --- a/xemantic-osc-api/src/commonTest/kotlin/type/OscDecodingTest.kt +++ b/xemantic-osc-api/src/commonTest/kotlin/type/OscDecodingTest.kt @@ -45,8 +45,8 @@ class OscDecodingTest { fun shouldDecodeFloat() { oscDecoder().decode(OscReader { typeTag("f") - float(3.14f) - }) shouldBe 3.14f + float(3.0f) + }) shouldBe 3.0f } @Test