Skip to content

Commit f6f9e8f

Browse files
committed
Fixes test case to use getString to extract raw string value
1 parent c14c87c commit f6f9e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack-core/src/test/scala/org/msgpack/core/MessagePackTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ class MessagePackTest extends MessagePackSpec {
453453
val k = kvp(0)
454454
val v = kvp(1)
455455

456-
(k.asStringValue().toString, v.asStringValue().toString)
456+
(k.asStringValue().getString, v.asStringValue().getString)
457457
}).toMap
458458
}.toList
459459
})

0 commit comments

Comments
 (0)