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
201201 }
202202
203203 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 )
205206 }
206207
207208 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())
209211 }
210212
211213 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())
213216 }
214217
215218}
You can’t perform that action at this time.
0 commit comments