fix (接口定义): 修复用例模块匹配错误问题

This commit is contained in:
fit2-zhao 2021-10-13 17:17:28 +08:00 committed by fit2-zhao
parent 00c287408a
commit ba08a5578c
1 changed files with 3 additions and 0 deletions

View File

@ -757,6 +757,9 @@ public class MsHTTPSamplerProxy extends MsTestElement {
apiDefinition = apiDefinitionService.get(this.getId());
if (apiDefinition == null) {
ApiTestCaseWithBLOBs apiTestCaseWithBLOBs = apiTestCaseService.get(this.getId());
if (apiTestCaseWithBLOBs == null) {
apiTestCaseWithBLOBs = apiTestCaseService.get(this.getName());
}
if (apiTestCaseWithBLOBs != null) {
apiDefinition = apiDefinitionService.get(apiTestCaseWithBLOBs.getApiDefinitionId());
} else {