Skip to content

Commit fba6c17

Browse files
committed
replace / with _ in branch name
1 parent 0393265 commit fba6c17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/BaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static void initialize(String appPropsFile) throws Exception {
6767
if (System.getenv("BRANCH_NAME") != null) {
6868
branchName = System.getenv("BRANCH_NAME");
6969
} else {
70-
branchName = TestUtils.getGitBranchName().replaceAll("/", "_");
70+
branchName = TestUtils.getGitBranchName();
7171
}
7272

7373
logger.info("RESULT_ROOT =" + resultRoot);

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Operator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ private void initialize() throws Exception {
289289
"weblogicOperatorImage",
290290
"wlsldi-v2.docker.oraclecorp.com/weblogic-operator"
291291
+ ":test_"
292-
+ BaseTest.getBranchName());
292+
+ BaseTest.getBranchName().replaceAll("/", "_"));
293293
}
294294

295295
if (System.getenv("IMAGE_PULL_POLICY_OPERATOR") != null) {

0 commit comments

Comments
 (0)