File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
src/test/scala/tools/jackson/module/scala Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -97,13 +97,6 @@ class ClassTagExtensionsTest extends JacksonTest {
97
97
}
98
98
}
99
99
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
-
107
100
it should " read value from string" in {
108
101
val result = mapper.readValue[GenericTestClass [Int ]](genericJson)
109
102
result should equal(genericInt)
@@ -234,13 +227,6 @@ class ClassTagExtensionsTest extends JacksonTest {
234
227
}
235
228
}
236
229
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
-
244
230
it should " update value from string" in {
245
231
val result = mapper.updateValue(List .empty[GenericTestClass [Int ]], toplevelArrayJson)
246
232
result should equal(listGenericInt)
You can’t perform that action at this time.
0 commit comments