This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new a154047e8c [core] RestCatalog: fix unit case annotation typo (#5398)
a154047e8c is described below

commit a154047e8ccc02607aa08b7a68f294766c96c59d
Author: XiaoHongbo <[email protected]>
AuthorDate: Thu Apr 3 15:16:05 2025 +0800

    [core] RestCatalog: fix unit case annotation typo (#5398)
---
 .../src/test/java/org/apache/paimon/rest/RESTSimpleTableTest.java      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/paimon-core/src/test/java/org/apache/paimon/rest/RESTSimpleTableTest.java 
b/paimon-core/src/test/java/org/apache/paimon/rest/RESTSimpleTableTest.java
index f06d74a6ac..93c8437955 100644
--- a/paimon-core/src/test/java/org/apache/paimon/rest/RESTSimpleTableTest.java
+++ b/paimon-core/src/test/java/org/apache/paimon/rest/RESTSimpleTableTest.java
@@ -30,6 +30,7 @@ import org.apache.paimon.table.FileStoreTable;
 import org.apache.paimon.table.SimpleTableTestBase;
 import org.apache.paimon.types.RowType;
 
+import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeEach;
 
 import java.io.IOException;
@@ -58,7 +59,7 @@ public abstract class RESTSimpleTableTest extends 
SimpleTableTestBase {
 
     protected abstract RESTCatalog createRESTCatalog() throws IOException;
 
-    @BeforeEach
+    @AfterEach
     public void after() throws Exception {
         super.after();
         restCatalog.dropTable(identifier, true);

Reply via email to