Skip to content

Commit 880ccb2

Browse files
committed
adding comments for env variables
1 parent 644a53c commit 880ccb2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public static void initialize(String appPropsFile) throws Exception {
6464
// resultDir = resultRoot + "/acceptance_test_tmp";
6565
userProjectsDir = resultRoot + "/acceptance_test_tmp/user-projects";
6666
projectRoot = System.getProperty("user.dir") + "/..";
67-
68-
//BRANCH_NAME var is used in Jenkins job
67+
68+
// BRANCH_NAME var is used in Jenkins job
6969
if (System.getenv("BRANCH_NAME") != null) {
7070
branchName = System.getenv("BRANCH_NAME");
7171
} else {

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
@@ -279,7 +279,7 @@ private void initialize() throws Exception {
279279
}
280280

281281
// customize the inputs yaml file to use our pre-built docker image
282-
//IMAGE_NAME_OPERATOR & IMAGE_TAG_OPERATOR variables are used for wercker
282+
// IMAGE_NAME_OPERATOR & IMAGE_TAG_OPERATOR variables are used for wercker
283283
if (System.getenv("IMAGE_NAME_OPERATOR") != null
284284
&& System.getenv("IMAGE_TAG_OPERATOR") != null) {
285285
operatorProps.put(

0 commit comments

Comments
 (0)