We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75a3618 commit 3e271c0Copy full SHA for 3e271c0
1 file changed
StyleCop.Analyzers/StyleCop.Analyzers.Test/ExportCodeFixProviderAttributeNameTest.cs
@@ -7,9 +7,9 @@ namespace StyleCop.Analyzers.Test
7
using System.Collections.Generic;
8
using System.Linq;
9
using System.Reflection;
10
+ using Analyzers.SpacingRules;
11
using Microsoft.CodeAnalysis;
12
using Microsoft.CodeAnalysis.CodeFixes;
- using StyleCop.Analyzers.ReadabilityRules;
13
using Xunit;
14
15
public class ExportCodeFixProviderAttributeNameTest
@@ -18,7 +18,7 @@ public static IEnumerable<object[]> CodeFixProviderTypeData
18
{
19
get
20
21
- var codeFixProviders = typeof(SA1110OpeningParenthesisMustBeOnDeclarationLine)
+ var codeFixProviders = typeof(TokenSpacingCodeFixProvider)
22
.Assembly
23
.GetTypes()
24
.Where(t => typeof(CodeFixProvider).IsAssignableFrom(t));
0 commit comments