Skip to content

Commit 482dfbc

Browse files
committed
fixed test case of ExtensionValue
1 parent acf517a commit 482dfbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack-core/src/test/scala/org/msgpack/value/ValueFactoryTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class ValueFactoryTest
6262
isValid(ValueFactory.emptyArray(), expected = ValueType.ARRAY, isArray = true)
6363
isValid(ValueFactory.emptyMap(), expected = ValueType.MAP, isMap = true)
6464
forAll { (v: Array[Byte]) => isValid(ValueFactory.newExtension(0, v), expected = ValueType
65-
.EXTENSION, isExtension = true, isRaw = true)
65+
.EXTENSION, isExtension = true, isRaw = false)
6666
}
6767
}
6868
}

0 commit comments

Comments
 (0)