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