Skip to content

Commit 920d84f

Browse files
committed
Update ClassTagExtensionsTest.scala
1 parent 48e466a commit 920d84f

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/test/scala/tools/jackson/module/scala/ClassTagExtensionsTest.scala

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,6 @@ class ClassTagExtensionsTest extends JacksonTest {
9797
}
9898
}
9999

100-
it should "read value from URL" in {
101-
withFile(genericJson) { file =>
102-
val result = mapper.readValue[GenericTestClass[Int]](file.toURI.toURL)
103-
result should equal(genericInt)
104-
}
105-
}
106-
107100
it should "read value from string" in {
108101
val result = mapper.readValue[GenericTestClass[Int]](genericJson)
109102
result should equal(genericInt)
@@ -234,13 +227,6 @@ class ClassTagExtensionsTest extends JacksonTest {
234227
}
235228
}
236229

237-
it should "update value from URL" in {
238-
withFile(toplevelArrayJson) { file =>
239-
val result = mapper.updateValue(List.empty[GenericTestClass[Int]], file.toURI.toURL)
240-
result should equal(listGenericInt)
241-
}
242-
}
243-
244230
it should "update value from string" in {
245231
val result = mapper.updateValue(List.empty[GenericTestClass[Int]], toplevelArrayJson)
246232
result should equal(listGenericInt)

0 commit comments

Comments
 (0)