Skip to content

Commit 3474231

Browse files
author
Aman Orazaev
committed
Test fix
1 parent 9fb6572 commit 3474231

File tree

1 file changed

+2
-2
lines changed
  • src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/ScenarioTests

1 file changed

+2
-2
lines changed

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/ScenarioTests/AsTests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,14 @@ function Test-AnalysisServicesServerLogExport
237237
$tempFile = [System.IO.Path]::GetTempFileName()
238238
Login-AzureAsAccount
239239
Export-AzureAnalysisServicesInstanceLog -Instance asazure://westus.asazure.windows.net/oratest -OutputPath $tempFile
240-
Assert-Exists $temFile
240+
Assert-Exists $tempFile
241241
$logContent = [System.IO.File]::ReadAllText($tempFile)
242242
Assert-False ([string]::IsNullOrEmpty($logContent))
243243
}
244244
finally
245245
{
246246
if (Test-Path $tempFile) {
247-
Remove-Item $tmpFile
247+
Remove-Item $tempFile
248248
}
249249
}
250250
}

0 commit comments

Comments
 (0)