diff --git a/src/test/scala/com/fasterxml/jackson/module/scala/ser/IterableSerializerTest.scala b/src/test/scala/com/fasterxml/jackson/module/scala/ser/IterableSerializerTest.scala index c0fd4b846..36f683fd8 100644 --- a/src/test/scala/com/fasterxml/jackson/module/scala/ser/IterableSerializerTest.scala +++ b/src/test/scala/com/fasterxml/jackson/module/scala/ser/IterableSerializerTest.scala @@ -48,7 +48,7 @@ class IterableSerializerTest extends SerializerTest { serialize(Seq(1, 2, 3)) should be("[1,2,3]") } - it should "serialize a Array[Int]" in { + it should "serialize an Array[Int]" in { serialize(Array(1, 2, 3)) should be("[1,2,3]") }