File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
modules/flink-common-api/src/test/scala/org/apache/flinkx/api Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -201,15 +201,18 @@ class SerializerTest extends AnyFlatSpec with Matchers with Inspectors with Test
201
201
}
202
202
203
203
it should " serialize ZoneOffset" in {
204
- testTypeInfoAndSerializer(ZoneOffset .UTC )
204
+ // Don't test type info, as its arity and total fields depend on the JDK version
205
+ testSerializer(ZoneOffset .UTC )
205
206
}
206
207
207
208
it should " serialize OffsetDateTime" in {
208
- testTypeInfoAndSerializer(OffsetDateTime .now())
209
+ // Don't test type info, as its arity and total fields depend on the JDK version
210
+ testSerializer(OffsetDateTime .now())
209
211
}
210
212
211
213
it should " serialize ZonedDateTime" in {
212
- testTypeInfoAndSerializer(ZonedDateTime .now())
214
+ // Don't test type info, as its arity and total fields depend on the JDK version
215
+ testSerializer(ZonedDateTime .now())
213
216
}
214
217
215
218
}
You can’t perform that action at this time.
0 commit comments