Skip to content

Commit 7d3812d

Browse files
authored
Merge pull request #989 from oracle/testjenkins
Fix integration test regression and discoverDomain
2 parents e9d4739 + 4657b49 commit 7d3812d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/python/wlsdeploy/tool/discover/domain_info_discoverer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,6 @@ def get_roles(self):
167167
# put it in the model
168168
model[role_name] = dict()
169169
model[role_name][model_constants.EXPRESSION] = role_expression
170-
return model_folder, model
170+
_logger.exiting(class_name=_class_name, method_name=_method_name, result=model)
171+
return model_folder, model
171172

system-test/src/test/java/oracle/weblogic/deploy/integration/BaseTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ protected void verifyResult(ExecResult result, String matchString) throws Except
158158
if(result.exitValue() != 0 || !result.stdout().contains(matchString)) {
159159
logger.info("DEBUG: result.exitValue=" + result.exitValue());
160160
logger.info("DEBUG: result.stdout=" + result.stdout());
161-
System.exit(0);
162161
throw new Exception("result stdout does not contains the expected string: " + matchString);
163162
}
164163
}

0 commit comments

Comments
 (0)