Skip to content

Commit 238c36e

Browse files
committed
Fix casing of 'Run' and 'Test' in Pester CodeLenses
1 parent 6681330 commit 238c36e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PowerShellEditorServices.Host/CodeLens/PesterCodeLensProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private IEnumerable<CodeLens> GetPesterLens(
4343
{
4444
new ClientCommand(
4545
"PowerShell.RunPesterTests",
46-
"run tests",
46+
"Run tests",
4747
new object[]
4848
{
4949
scriptFile.ClientFilePath,
@@ -53,7 +53,7 @@ private IEnumerable<CodeLens> GetPesterLens(
5353

5454
new ClientCommand(
5555
"PowerShell.RunPesterTests",
56-
"debug tests",
56+
"Debug tests",
5757
new object[]
5858
{
5959
scriptFile.ClientFilePath,

0 commit comments

Comments
 (0)