yuxiqian commented on code in PR #3558: URL: https://github.com/apache/flink-cdc/pull/3558#discussion_r1723024778
########## flink-cdc-runtime/src/test/java/org/apache/flink/cdc/runtime/operators/schema/SchemaEvolveTest.java: ########## @@ -1040,8 +1040,10 @@ tableId, buildRecord(INT, 2, STRING, "Bob", SMALLINT, (short) 18)), Column.physicalColumn( "height", DOUBLE, "Height data"))))); Assertions.assertThatThrownBy(() -> processEvent(schemaOperator, addColumnEvents)) + .cause() + .cause() .isExactlyInstanceOf(RuntimeException.class) - .hasMessageContaining("Failed to apply schema change"); + .hasMessageContaining("failed to apply schema change"); Review Comment: ~~Use `hasRootCauseInstanceOf` and `hasRootCauseMessage`~~ -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org