fix(测试跟踪): 修复测试用例选择自动且关联用例为其他时,在测试计划中查看该用例出现问题
This commit is contained in:
parent
100798e0f2
commit
28aebdd2f0
|
@ -45,6 +45,10 @@ public class CheckOwnerService {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void checkApiTestOwner(String testId) {
|
public void checkApiTestOwner(String testId) {
|
||||||
|
// 关联为其他时
|
||||||
|
if (StringUtils.equals("other", testId)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
String workspaceId = SessionUtils.getCurrentWorkspaceId();
|
String workspaceId = SessionUtils.getCurrentWorkspaceId();
|
||||||
QueryAPITestRequest request = new QueryAPITestRequest();
|
QueryAPITestRequest request = new QueryAPITestRequest();
|
||||||
request.setWorkspaceId(workspaceId);
|
request.setWorkspaceId(workspaceId);
|
||||||
|
|
Loading…
Reference in New Issue