Skip to content

Commit

Permalink
Move SpyLoggerHelper into the global namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Dec 21, 2024
1 parent 8f3a586 commit 5382a58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Collections.Generic;
using System.Linq;
using Xunit;
using Xunit.Runner.VisualStudio;
using Constants = VSTestAdapter.Xunit.Runner.VisualStudio.Constants;
using TestPlatformContext = VSTestAdapter.Xunit.Runner.VisualStudio.TestPlatformContext;
using VsDiscoverySink = VSTestAdapter.Xunit.Runner.VisualStudio.VsDiscoverySink;
Expand Down Expand Up @@ -51,7 +50,7 @@ public void StandardData(

Assert.NotNull(vsTestCase);

// Standard VSTest propertiesgi
// Standard VSTest properties
Assert.Equal("/source/file.cs", vsTestCase.CodeFilePath);
Assert.Equal("test-case-display-name", vsTestCase.DisplayName);
Assert.Equal(Constants.ExecutorUri, vsTestCase.ExecutorUri.OriginalString);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
using LoggerHelper = VSTestAdapter.Xunit.Runner.VisualStudio.LoggerHelper;

namespace Xunit.Runner.VisualStudio;

internal class SpyLoggerHelper(SpyMessageLogger logger, Stopwatch stopwatch) :
LoggerHelper(logger, stopwatch)
{
Expand Down

0 comments on commit 5382a58

Please sign in to comment.