afedulov commented on code in PR #19552: URL: https://github.com/apache/flink/pull/19552#discussion_r863602581
########## flink-formats/flink-csv/src/test/java/org/apache/flink/formats/csv/CsvRowDataSerDeSchemaTest.java: ########## @@ -61,11 +61,9 @@ import static org.apache.flink.table.data.StringData.fromString; import static org.apache.flink.table.data.TimestampData.fromInstant; import static org.apache.flink.table.data.TimestampData.fromLocalDateTime; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.junit.Assert.assertArrayEquals; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.fail; +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; +import static org.assertj.core.api.Assertions.fail; Review Comment: Just search where it is used: `testDeserializeParseError()`. Since the line did not change, only the import, it is not possible to comment in the precise location during the review. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
