trushev commented on code in PR #7256:
URL: https://github.com/apache/hudi/pull/7256#discussion_r1027586875


##########
hudi-client/hudi-java-client/src/test/java/org/apache/hudi/table/action/commit/TestSchemaEvolutionClient.java:
##########
@@ -43,7 +42,7 @@
 /**
  * Tests for schema evolution client api.
  */
-public class TestSchemaEvolutionClient extends HoodieJavaClientTestBase {
+public class TestSchemaEvolutionClient extends HoodieJavaClientTestHarness {

Review Comment:
   NPE will be thrown without
   
   ```java
   
     @BeforeEach
     public void setUpClient() throws IOException {
       initResources(); // <--------------------------------------
       HoodieJavaWriteClient<RawTripTestPayload> writeClient = getWriteClient();
       this.writeClient = writeClient;
       prepareTable(writeClient);
     }
   
     @AfterEach
     public void closeClient() throws IOException {
       cleanupResources(); // <--------------------------------------
       if (writeClient != null) {
         writeClient.close();
       }
     }
   ```
   



-- 
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]

Reply via email to