Skip to content

Commit

Permalink
Case insensitive replacement of Test in help
Browse files Browse the repository at this point in the history
  • Loading branch information
bschwede committed Dec 5, 2015
1 parent 951ad8e commit 085cd63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions en-US/about_Pester.help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CREATING A PESTER TEST

./deploy/clean.Tests.ps1
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
. "$here\$sut"

Describe "clean" {
Expand Down Expand Up @@ -71,7 +71,7 @@ RUNNNING A PESTER TEST
}

$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
. "$here\$sut"

Describe "BuildIfChanged" {
Expand Down

0 comments on commit 085cd63

Please sign in to comment.