Skip to content

Commit

Permalink
minor string adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka Grabarevic committed May 16, 2018
1 parent b603e9e commit 9278de4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Object Convert(Object value, Type targetType, Object parameter, CultureIn
var stackedItems = new List<StackedItem>();

stackedItems.Add(new StackedItem {Value = testRun.FailedTests, Title = "Failed Tests", Color = Brushes.Red, Icon = IconProvider.FailIcon});
stackedItems.Add(new StackedItem {Value = testRun.NotApplicableTests, Title = "Not Applicable Tests", Color = Brushes.Yellow, Icon = IconProvider.UnknownIcon});
stackedItems.Add(new StackedItem {Value = testRun.NotApplicableTests, Title = "Not Executed Tests", Color = Brushes.Yellow, Icon = IconProvider.UnknownIcon});
stackedItems.Add(new StackedItem {Value = testRun.PassedTests, Title = "Passed Tests", Color = Brushes.Green, Icon = IconProvider.SuccessIcon});
stackedItems.Add(new StackedItem {Value = testRun.IncompleteTests, Title = "Incomplete Tests", Color = Brushes.Blue, Icon = IconProvider.LoadingIcon});

Expand Down

0 comments on commit 9278de4

Please sign in to comment.