Additional unit tests

This commit is contained in:
Chris Cameron
2017-09-28 15:57:49 -04:00
parent 3d46a4a317
commit f86ddbfc97
2 changed files with 56 additions and 8 deletions

View File

@@ -371,7 +371,7 @@ namespace ICD.Common.Utils.Extensions
if (extends == null)
throw new ArgumentNullException("extends");
return extends.OrderBy(kvp => kvp.Key).Select(kvp => kvp.Value);
return extends.OrderByKey().Select(kvp => kvp.Value);
}
}
}