You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/xunit.runner.utility/Frameworks/TestFrameworkOptions.cs
+1-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
usingSystem.Collections.Generic;
2
2
usingSystem.Diagnostics;
3
-
usingSystem.Diagnostics.CodeAnalysis;
4
3
usingSystem.Linq;
5
4
usingXunit.Abstractions;
6
5
@@ -24,7 +23,6 @@ public class TestFrameworkOptions : ITestFrameworkDiscoveryOptions, ITestFramewo
24
23
/// Creates an instance of <see cref="TestFrameworkOptions"/>
25
24
/// </summary>
26
25
/// <param name="configuration">The optional configuration to copy values from.</param>
27
-
[SuppressMessage("Language Usage Opportunities","RECS0091:Use 'var' keyword when possible",Justification="Using var here causes ambiguity with the SetDiagnosticMessages extension method")]
@@ -45,7 +43,6 @@ public static ITestFrameworkDiscoveryOptions ForDiscovery(TestAssemblyConfigurat
45
43
/// Creates an instance of <see cref="TestFrameworkOptions"/>
46
44
/// </summary>
47
45
/// <param name="configuration">The optional configuration to copy values from.</param>
48
-
[SuppressMessage("Language Usage Opportunities","RECS0091:Use 'var' keyword when possible",Justification="Using var here causes ambiguity with the SetDiagnosticMessages extension method")]
0 commit comments