Skip to content

Commit

Permalink
Fix IDE warnings (microsoft#3679)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink authored May 26, 2022
1 parent 14fd92d commit 91910b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/Intent/ConsoleLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public void WriteSummary(int passed, List<(MethodInfo method, Exception exceptio
{
WriteLine();
WriteLine();
if (failures.Count > 0) {
if (failures.Count > 0)
{
WriteLine($"There were {failures.Count} failures:");
}
failures.ForEach(t => { WriteTestFailure(t.method, t.exception, t.time); WriteLine(); });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using Microsoft.VisualStudio.TestPlatform.Common.Logging;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Host;
using Microsoft.VisualStudio.TestPlatform.Utilities.Helpers;
Expand Down

0 comments on commit 91910b8

Please sign in to comment.