This commit is contained in:
chenjianxing 2020-05-09 20:06:57 +08:00
commit 4c10f521fa
1 changed files with 2 additions and 0 deletions

View File

@ -311,6 +311,7 @@ public class TestCaseNodeService {
} else {
pid = insertTestCaseNode(nodeName, pNode == null ? null : pNode.getId(), projectId, level);
pathMap.put(path.toString(), pid);
level++;
}
while (pathIterator.hasNext()) {
@ -322,6 +323,7 @@ public class TestCaseNodeService {
} else {
pid = insertTestCaseNode(nextNodeName, pid, projectId, level);
pathMap.put(path.toString(), pid);
level++;
}
}
}