Skip to content

Commit

Permalink
Removed repeated test ID from ExternalID2
Browse files Browse the repository at this point in the history
  • Loading branch information
manaska committed Feb 1, 2024
1 parent 4af62f2 commit a776e67
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Ginger/GingerCoreNET/ALMLib/Octane/OctaneCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,6 @@ private void AddTCtoFlow(BusinessFlow busFlow, Dictionary<string, string> busVar
if (tc.LinkedTestID == null || tc.LinkedTestID == string.Empty)
{
tcActivsGroup.ExternalID = tc.TestID;
tcActivsGroup.ExternalID2 = tc.TestID;
}
else
{
Expand Down Expand Up @@ -1727,7 +1726,6 @@ private string CreateNewTestCase(ActivitiesGroup activitiesGroup, string fatherI
}).Result;

activitiesGroup.ExternalID = test.Id.ToString();
activitiesGroup.ExternalID2 = test.Id.ToString();
CreateTestStep(test.Id, testScript);

return test.Id.ToString();
Expand Down Expand Up @@ -1862,7 +1860,6 @@ private string UpdateTestCase(ActivitiesGroup activitiesGroup, string fatherId,
}).Result;

activitiesGroup.ExternalID = test.Id.ToString();
activitiesGroup.ExternalID2 = test.Id.ToString();
CreateTestStep(test.Id, testScript);

return test.Id.ToString();
Expand Down

0 comments on commit a776e67

Please sign in to comment.