File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/integration-tests/introspector Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 15
15
# For example:
16
16
# /Servers/admin-server,ListenAddress,,domain1-admin-server
17
17
#
18
+ # If you don't want to check the original-val is as expected
19
+ # then specify an asterisk (*) instead of the expected value.
18
20
#
19
21
# Then run this program:
20
22
# wlst.sh checkBeans admin_name admin_pass url input_file_name
@@ -75,7 +77,7 @@ def addError(err):
75
77
print ("Info: originalActual='" + originalActual + "'" )
76
78
print ("Info: overriddenActual='" + overriddenActual + "'" )
77
79
78
- if originalActual != originalExpected :
80
+ if originalExpected != '*' and originalActual != originalExpected :
79
81
addError (
80
82
"Error: got '" + originalActual + "'"
81
83
+ " but expected value '" + originalExpected + "'"
You can’t perform that action at this time.
0 commit comments