Skip to content

Commit

Permalink
Merge pull request #1830 from Ginger-Automation/BugFix/8933_FailedToE…
Browse files Browse the repository at this point in the history
…xportExecutionDetailsQC

Bug fix/8933 failed to export execution details qc
  • Loading branch information
JinendraGhodke authored Mar 18, 2021
2 parents b567557 + 0baccea commit 8eac4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ginger/GingerCore/ALM/QCRestAPI/ExportToQCRestAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ private static QCItem ConvertObjectValuesToQCItem(object item, ResourceType type
}
if (itemVals.GetType().GetProperty("TestOrder") != null && itemVals.GetType().GetProperty("TestOrder").GetValue(itemVals, null) != null && !isUpdate)
{
itemWithValues.Fields.Add("test-order", itemVals.GetType().GetProperty("TestOrder").GetValue(itemVals, null));
itemWithValues.Fields.Add("order-id", itemVals.GetType().GetProperty("TestOrder").GetValue(itemVals, null));
}
if (itemVals.GetType().GetProperty("TestId") != null && itemVals.GetType().GetProperty("TestId").GetValue(itemVals, null) != null && !isUpdate)
{
Expand Down

0 comments on commit 8eac4bf

Please sign in to comment.