diff --git a/images/win/scripts/ImageHelpers/TestsHelpers.ps1 b/images/win/scripts/ImageHelpers/TestsHelpers.ps1 index ee962129f..5cc69dec2 100644 --- a/images/win/scripts/ImageHelpers/TestsHelpers.ps1 +++ b/images/win/scripts/ImageHelpers/TestsHelpers.ps1 @@ -12,14 +12,6 @@ function Get-CommandResult { } } -# Gets path to the tool, analogue of 'which tool' -function Get-WhichTool { - Param ( - [Parameter(Mandatory)][string] $Tool - ) - return (Get-Command $Tool).Path -} - # Gets value of environment variable by the name function Get-EnvironmentVariable($variable) { return [System.Environment]::GetEnvironmentVariable($variable)