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 885db3f871c Fix ScenarioCommonPath.getAuthorityFile() (#36764)
885db3f871c is described below
commit 885db3f871ca2134ed81d31228836e86098e820e
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Sep 30 17:28:09 2025 +0800
Fix ScenarioCommonPath.getAuthorityFile() (#36764)
* Refactor hive-jdbc version management in pom.xml
* Refactor ScenarioCommonPath
* Fix ScenarioCommonPath.getAuthorityFile()
---
.../test/e2e/env/runtime/type/scenario/path/ScenarioCommonPath.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/type/scenario/path/ScenarioCommonPath.java
b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/type/scenario/path/ScenarioCommonPath.java
index e14f2e03eef..df98d86d16e 100644
---
a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/type/scenario/path/ScenarioCommonPath.java
+++
b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/runtime/type/scenario/path/ScenarioCommonPath.java
@@ -67,7 +67,7 @@ public final class ScenarioCommonPath {
* @return authority file
*/
public String getAuthorityFile() {
- return getFile(AUTHORITY_FILE);
+ return getFile(String.join("/", "env/scenario", scenario,
AUTHORITY_FILE));
}
private String getFile(final String fileName) {