We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12e844 commit bb2d640Copy full SHA for bb2d640
server/src/main/java/com/testsigma/service/TestCaseService.java
@@ -297,11 +297,6 @@ public TestCase copy(TestCaseCopyRequest testCaseRequest) throws TestsigmaExcept
297
testCase.setName(testCaseRequest.getName());
298
testCase.setCreatedDate(new Timestamp(Calendar.getInstance().getTimeInMillis()));
299
testCase.setLastRunId(null);
300
- if (testCaseRequest.getIsStepGroup()) {
301
- testCase.setTestDataStartIndex(null);
302
- testCase.setTestDataId(null);
303
- testCase.setIsDataDriven(false);
304
- }
305
testCase.setIsStepGroup(testCaseRequest.getIsStepGroup());
306
testCase.setCopiedFrom(parentCase.getId());
307
testCase.setPreRequisiteCase(null);
0 commit comments