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 f4f1f05 commit 951ad8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en-US/about_Mocking.help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ EXAMPLE
}

$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 951ad8e

Please sign in to comment.