Skip to content

Commit d00af9f

Browse files
authored
use backslash
1 parent 5347ae7 commit d00af9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/TestUtils.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ function Mock-Api-Call-Grails-1.1.1-Available($Available) {
1919
function Mock-PSDK-Dir {
2020
$Script:backup_PSDK_DIR = $Global:PSDK_DIR
2121
$randomName = (-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))
22-
$testPath = "$env:Temp/$randomName"
23-
New-Item -ItemType Directory "$testPath/.posh-sdk" | Out-Null
24-
$Global:PSDK_DIR = (Get-Item "$testPath/.posh-sdk").FullName
22+
$testPath = "$env:Temp\$randomName"
23+
New-Item -ItemType Directory "$testPath\.posh-sdk" | Out-Null
24+
$Global:PSDK_DIR = (Get-Item "$testPath\.posh-sdk").FullName
2525
New-Item -ItemType Directory "$Global:PSDK_DIR\grails" | Out-Null
2626
}
2727

0 commit comments

Comments
 (0)