Skip to content

Commit 166c956

Browse files
authored
Merge pull request #701 from oracle/introspector-test-updates
minor fix to introspect mock/unit test
2 parents d1a11bd + d393a4d commit 166c956

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/integration-tests/introspector/checkBeans.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def addError(err):
147147
checkStatus='FAILED'
148148
addError(
149149
"Error: expected original value and actual value to differ "
150-
+ " but got value '" + originalValue + "' for both"
150+
+ " but got value '" + originalActual + "' for both"
151151
+ " for bean_path=serverConfig/" + bean_path
152152
+ " attr='" + attr + "'. "
153153
)

src/integration-tests/introspector/wl-introspect-pod.yamlt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ spec:
3434
- name: weblogic-credentials-volume
3535
mountPath: /weblogic-operator/secrets
3636
readOnly: true
37+
- name: my-secret-volume
38+
mountPath: /weblogic-operator/config-overrides-secrets/my-secret
39+
readOnly: true
3740
- name: weblogic-domain-cm-volume
3841
mountPath: /weblogic-operator/scripts
3942
readOnly: true
@@ -50,6 +53,10 @@ spec:
5053
secret:
5154
defaultMode: 420
5255
secretName: ${WEBLOGIC_CREDENTIALS_SECRET_NAME}
56+
- name: my-secret-volume
57+
secret:
58+
defaultMode: 420
59+
secretName: my-secret
5360
- name: weblogic-domain-cm-volume
5461
configMap:
5562
defaultMode: 365

0 commit comments

Comments
 (0)