Skip to content

Commit

Permalink
Sort filter list
Browse files Browse the repository at this point in the history
  • Loading branch information
IvenBach committed May 15, 2019
1 parent d66e16c commit c3e8673
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rubberduck.Core/UI/UnitTesting/TestExplorerViewModel.cs
Expand Up @@ -71,7 +71,8 @@ internal sealed class TestExplorerViewModel : ViewModelBase, INavigateSelection,

OutcomeFilters = new System.Collections.ObjectModel.ObservableCollection<string>(
new[] { _allResultsFilter }
.Concat(Enum.GetNames(typeof(TestOutcome)).Select(s => s.ToString())));
.Concat(Enum.GetNames(typeof(TestOutcome)).Select(s => s.ToString()))
.OrderBy(s => s));
}

public TestExplorerModel Model { get; }
Expand Down

0 comments on commit c3e8673

Please sign in to comment.