Skip to content

Commit d9046f9

Browse files
committed
chore: fix build error
1 parent ee7c05b commit d9046f9

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

lithic-java-core/src/test/kotlin/com/lithic/api/core/ObjectMappersTest.kt

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -91,19 +91,4 @@ internal class ObjectMappersTest {
9191

9292
assertDoesNotThrow { jsonMapper().readValue<OffsetDateTime>(json) }
9393
}
94-
95-
enum class LenientOffsetDateTimeTestCase(val string: String) {
96-
DATE_TIME("1998-04-21T04:00:00"),
97-
ZONED_DATE_TIME_1("1998-04-21T04:00:00+03:00"),
98-
ZONED_DATE_TIME_2("1998-04-21T04:00:00Z"),
99-
}
100-
101-
@ParameterizedTest
102-
@EnumSource
103-
fun readOffsetDateTime_lenient(testCase: LenientOffsetDateTimeTestCase) {
104-
val jsonMapper = jsonMapper()
105-
val json = jsonMapper.writeValueAsString(testCase.string)
106-
107-
assertDoesNotThrow { jsonMapper().readValue<OffsetDateTime>(json) }
108-
}
10994
}

0 commit comments

Comments
 (0)