We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb6572 commit 3474231Copy full SHA for 3474231
src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/ScenarioTests/AsTests.ps1
@@ -237,14 +237,14 @@ function Test-AnalysisServicesServerLogExport
237
$tempFile = [System.IO.Path]::GetTempFileName()
238
Login-AzureAsAccount
239
Export-AzureAnalysisServicesInstanceLog -Instance asazure://westus.asazure.windows.net/oratest -OutputPath $tempFile
240
- Assert-Exists $temFile
+ Assert-Exists $tempFile
241
$logContent = [System.IO.File]::ReadAllText($tempFile)
242
Assert-False ([string]::IsNullOrEmpty($logContent))
243
}
244
finally
245
{
246
if (Test-Path $tempFile) {
247
- Remove-Item $tmpFile
+ Remove-Item $tempFile
248
249
250
0 commit comments