fix(测试跟踪): xmind 2020 版本 导入异常修复
This commit is contained in:
parent
c29dc84782
commit
892fcdebe4
|
@ -231,7 +231,7 @@ public class XmindCaseParser {
|
||||||
JSONObject step = new JSONObject(true);
|
JSONObject step = new JSONObject(true);
|
||||||
step.put("num", i + 1);
|
step.put("num", i + 1);
|
||||||
step.put("desc", attacheds.get(i).getTitle());
|
step.put("desc", attacheds.get(i).getTitle());
|
||||||
if (attacheds.get(i).getChildren() != null && !attacheds.get(i).getChildren().getAttached().isEmpty()) {
|
if (attacheds.get(i) != null && attacheds.get(i).getChildren() != null && attacheds.get(i).getChildren().getAttached()!=null) {
|
||||||
step.put("result", attacheds.get(i).getChildren().getAttached().get(0).getTitle());
|
step.put("result", attacheds.get(i).getChildren().getAttached().get(0).getTitle());
|
||||||
}
|
}
|
||||||
jsonArray.add(step);
|
jsonArray.add(step);
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit cf6b06526324326a563d933e07118fac014a63b4
|
Subproject commit ee74568be0beba46da19616f5832e83f9164c688
|
Loading…
Reference in New Issue