You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/12/29 09:51:33 UTC

[shardingsphere] branch master updated: Fix transaction test case load package name (#23152)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2d8c93ce160 Fix transaction test case load package name (#23152)
2d8c93ce160 is described below

commit 2d8c93ce160057608685ff17240c9ecfd8bc1da5
Author: ZhangCheng <fl...@outlook.com>
AuthorDate: Thu Dec 29 17:51:21 2022 +0800

    Fix transaction test case load package name (#23152)
---
 .../shardingsphere/test/e2e/transaction/util/TestCaseClassScanner.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/e2e/transaction/src/test/java/org/apache/shardingsphere/test/e2e/transaction/util/TestCaseClassScanner.java b/test/e2e/transaction/src/test/java/org/apache/shardingsphere/test/e2e/transaction/util/TestCaseClassScanner.java
index 8c8da15adcc..c80a3259ae0 100644
--- a/test/e2e/transaction/src/test/java/org/apache/shardingsphere/test/e2e/transaction/util/TestCaseClassScanner.java
+++ b/test/e2e/transaction/src/test/java/org/apache/shardingsphere/test/e2e/transaction/util/TestCaseClassScanner.java
@@ -42,7 +42,7 @@ import java.util.jar.JarFile;
 @NoArgsConstructor(access = AccessLevel.PRIVATE)
 public final class TestCaseClassScanner {
     
-    private static final String TEST_CASE_PACKAGE_NAME = "org.apache.shardingsphere.integration.transaction.cases";
+    private static final String TEST_CASE_PACKAGE_NAME = "org.apache.shardingsphere.test.e2e.transaction.cases";
     
     private static final Collection<File> CLASS_FILES = new LinkedList<>();