Skip to content

Commit 1393bea

Browse files
authored
Merge pull request #422 from pjfanning/scala-2.13-test-issue
Fix scala 2.13 compile issue in new test
2 parents 42f8248 + 25b7495 commit 1393bea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/scala/com/fasterxml/jackson/module/scala/deser/ListMapTest.scala

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import org.scalatest.{FlatSpec, Matchers}
99
import org.scalatest.prop.TableDrivenPropertyChecks
1010
import org.scalatestplus.junit.JUnitRunner
1111

12-
import scala.collection.immutable.{ListMap, Queue, Stack, TreeMap}
12+
import scala.collection.immutable.{ListMap, Queue, TreeMap}
1313

1414
// taken from https://github.com/dejanlokar1/serialization_problem/blob/master/src/test/scala/SerializationTest.scala
1515
// test for https://github.com/FasterXML/jackson-databind/issues/2422
@@ -54,7 +54,6 @@ class ListMapTest extends FlatSpec with Matchers with TableDrivenPropertyChecks
5454
val sequences = Table(
5555
"Sequence implementations",
5656
List("foo"),
57-
Stack("foo"),
5857
Stream("foo"),
5958
Queue("foo"),
6059
Vector("foo")

0 commit comments

Comments
 (0)