Skip to content

Commit 5382a58

Browse files
committed
Move SpyLoggerHelper into the global namespace
1 parent 8f3a586 commit 5382a58

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

test/test.xunit.runner.visualstudio/Sinks/VsDiscoverySinkTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Collections.Generic;
55
using System.Linq;
66
using Xunit;
7-
using Xunit.Runner.VisualStudio;
87
using Constants = VSTestAdapter.Xunit.Runner.VisualStudio.Constants;
98
using TestPlatformContext = VSTestAdapter.Xunit.Runner.VisualStudio.TestPlatformContext;
109
using VsDiscoverySink = VSTestAdapter.Xunit.Runner.VisualStudio.VsDiscoverySink;
@@ -51,7 +50,7 @@ public void StandardData(
5150

5251
Assert.NotNull(vsTestCase);
5352

54-
// Standard VSTest propertiesgi
53+
// Standard VSTest properties
5554
Assert.Equal("/source/file.cs", vsTestCase.CodeFilePath);
5655
Assert.Equal("test-case-display-name", vsTestCase.DisplayName);
5756
Assert.Equal(Constants.ExecutorUri, vsTestCase.ExecutorUri.OriginalString);

test/test.xunit.runner.visualstudio/Utility/SpyLoggerHelper.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
66
using LoggerHelper = VSTestAdapter.Xunit.Runner.VisualStudio.LoggerHelper;
77

8-
namespace Xunit.Runner.VisualStudio;
9-
108
internal class SpyLoggerHelper(SpyMessageLogger logger, Stopwatch stopwatch) :
119
LoggerHelper(logger, stopwatch)
1210
{

0 commit comments

Comments
 (0)