From 25b74956619845528afcd980960f78d497817e90 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Mon, 26 Aug 2019 12:15:12 +0100 Subject: [PATCH] Fix scala 2.13 compile issue in new test --- .../com/fasterxml/jackson/module/scala/deser/ListMapTest.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/scala/com/fasterxml/jackson/module/scala/deser/ListMapTest.scala b/src/test/scala/com/fasterxml/jackson/module/scala/deser/ListMapTest.scala index d60d40712..73debc58a 100644 --- a/src/test/scala/com/fasterxml/jackson/module/scala/deser/ListMapTest.scala +++ b/src/test/scala/com/fasterxml/jackson/module/scala/deser/ListMapTest.scala @@ -9,7 +9,7 @@ import org.scalatest.{FlatSpec, Matchers} import org.scalatest.prop.TableDrivenPropertyChecks import org.scalatestplus.junit.JUnitRunner -import scala.collection.immutable.{ListMap, Queue, Stack, TreeMap} +import scala.collection.immutable.{ListMap, Queue, TreeMap} // taken from https://github.com/dejanlokar1/serialization_problem/blob/master/src/test/scala/SerializationTest.scala // test for https://github.com/FasterXML/jackson-databind/issues/2422 @@ -54,7 +54,6 @@ class ListMapTest extends FlatSpec with Matchers with TableDrivenPropertyChecks val sequences = Table( "Sequence implementations", List("foo"), - Stack("foo"), Stream("foo"), Queue("foo"), Vector("foo")