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

zhangliang 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 4f17adf9e59 Refactor E2ETestEnvironment (#36648)
4f17adf9e59 is described below

commit 4f17adf9e5925fecd22d4aeb238ded02cf669bba
Author: Liang Zhang <[email protected]>
AuthorDate: Sat Sep 20 21:03:11 2025 +0800

    Refactor E2ETestEnvironment (#36648)
---
 .../apache/shardingsphere/test/e2e/env/runtime/E2ETestEnvironment.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/E2ETestEnvironment.java
 
b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/E2ETestEnvironment.java
index 415cdd9b577..326721dbf59 100644
--- 
a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/E2ETestEnvironment.java
+++ 
b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/E2ETestEnvironment.java
@@ -89,7 +89,7 @@ public final class E2ETestEnvironment {
     }
     
     private Collection<String> getScenarios(final Properties props) {
-        Collection<String> result = 
Splitter.on(",").trimResults().splitToList(props.getProperty("it.scenarios"));
+        Collection<String> result = 
Splitter.on(",").trimResults().splitToList(props.getProperty("it.scenarios", 
""));
         for (String each : result) {
             new ScenarioCommonPath(each).checkFolderExist();
         }

Reply via email to