Skip to content

Commit 3e271c0

Browse files
committed
Fix test which relies on reflection over the code fixes assembly
1 parent 75a3618 commit 3e271c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers.Test/ExportCodeFixProviderAttributeNameTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ namespace StyleCop.Analyzers.Test
77
using System.Collections.Generic;
88
using System.Linq;
99
using System.Reflection;
10+
using Analyzers.SpacingRules;
1011
using Microsoft.CodeAnalysis;
1112
using Microsoft.CodeAnalysis.CodeFixes;
12-
using StyleCop.Analyzers.ReadabilityRules;
1313
using Xunit;
1414

1515
public class ExportCodeFixProviderAttributeNameTest
@@ -18,7 +18,7 @@ public static IEnumerable<object[]> CodeFixProviderTypeData
1818
{
1919
get
2020
{
21-
var codeFixProviders = typeof(SA1110OpeningParenthesisMustBeOnDeclarationLine)
21+
var codeFixProviders = typeof(TokenSpacingCodeFixProvider)
2222
.Assembly
2323
.GetTypes()
2424
.Where(t => typeof(CodeFixProvider).IsAssignableFrom(t));

0 commit comments

Comments
 (0)