Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ private ITestPlan FindTestPlan(string planName, int sourcePlanId)
Log.LogWarning("We found multiple test Plans with the name '{TestPlanName}'. They have ID(s) of '{result}'! We only have name at this point as a unique identifier and duplicates will break the code. Ensure that all Test Plans have unique names.", planName, result);
throw new Exception(string.Format("Test plans {0} all have the same name!", result));
}
testPlan = testPlans[0];
testPlan = testPlans.FirstOrDefault();

if (testPlan != null)
{
Expand Down
Loading