We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c0ff60 commit 4f7af81Copy full SHA for 4f7af81
src/PowerShellEditorServices/Services/CodeLens/PesterCodeLensProvider.cs
@@ -46,7 +46,7 @@ public PesterCodeLensProvider(ConfigurationService configurationService)
46
/// <returns>All CodeLenses for the given Pester symbol.</returns>
47
private CodeLens[] GetPesterLens(PesterSymbolReference pesterSymbol, ScriptFile scriptFile)
48
{
49
- var word = pesterSymbol.Command == PesterCommandType.It ? "test" : "tests";
+ string word = pesterSymbol.Command == PesterCommandType.It ? "test" : "tests";
50
var codeLensResults = new CodeLens[]
51
52
new CodeLens()
0 commit comments