Skip to content

Commit fbb0068

Browse files
committed
Fix
1 parent 23f2364 commit fbb0068

File tree

1 file changed

+3
-2
lines changed
  • src/Razor/test/Microsoft.VisualStudio.LanguageServices.Razor.Test/Cohost/CodeActions

1 file changed

+3
-2
lines changed

src/Razor/test/Microsoft.VisualStudio.LanguageServices.Razor.Test/Cohost/CodeActions/AddUsingTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System.Threading.Tasks;
55
using Microsoft.CodeAnalysis.ExternalAccess.Razor;
6+
using Microsoft.CodeAnalysis.Razor.Protocol;
67
using Xunit;
78
using Xunit.Abstractions;
89

@@ -27,7 +28,7 @@ public async Task FullyQualify()
2728
}
2829
""";
2930

30-
await VerifyCodeActionAsync(input, expected, "System.Text.StringBuilder");
31+
await VerifyCodeActionAsync(input, expected, LanguageServerConstants.CodeActions.FullyQualify);
3132
}
3233

3334
[Fact]
@@ -54,7 +55,7 @@ public class StringBuilder
5455
{
5556
}
5657
""")],
57-
codeActionName: "Fully qualify 'StringBuilder'",
58+
codeActionName: LanguageServerConstants.CodeActions.FullyQualify,
5859
childActionIndex: 0);
5960
}
6061

0 commit comments

Comments
 (0)