fix(接口定义): 修复执行缺陷

This commit is contained in:
fit2-zhao 2020-12-23 19:27:19 +08:00
parent 2ae6f3ff62
commit e4d245e505
1 changed files with 3 additions and 1 deletions

View File

@ -55,8 +55,10 @@ public class MsScenario extends MsTestElement {
if (StringUtils.isNotEmpty(environmentId)) { if (StringUtils.isNotEmpty(environmentId)) {
ApiTestEnvironmentService environmentService = CommonBeanFactory.getBean(ApiTestEnvironmentService.class); ApiTestEnvironmentService environmentService = CommonBeanFactory.getBean(ApiTestEnvironmentService.class);
ApiTestEnvironmentWithBLOBs environment = environmentService.get(environmentId); ApiTestEnvironmentWithBLOBs environment = environmentService.get(environmentId);
if (environment != null && environment.getConfig() != null) {
config.setConfig(JSONObject.parseObject(environment.getConfig(), EnvironmentConfig.class)); config.setConfig(JSONObject.parseObject(environment.getConfig(), EnvironmentConfig.class));
} }
}
if (CollectionUtils.isNotEmpty(this.getVariables())) { if (CollectionUtils.isNotEmpty(this.getVariables())) {
config.setVariables(this.variables); config.setVariables(this.variables);
} }