diff --git a/eng/common/TestResources/New-TestResources.ps1 b/eng/common/TestResources/New-TestResources.ps1 index 8e4e5e9d4f78..49616b64b335 100644 --- a/eng/common/TestResources/New-TestResources.ps1 +++ b/eng/common/TestResources/New-TestResources.ps1 @@ -652,8 +652,8 @@ try { } } catch { - Write-Warning "The Object ID of the test application was unable to be queried. " + ` - "You may want to consider passing it explicitly with the 'TestApplicationOid` parameter." + Write-Warning ("The Object ID of the test application was unable to be queried. " + + "You may want to consider passing it explicitly with the 'TestApplicationOid` parameter.") throw $_.Exception } @@ -693,9 +693,9 @@ try { if ($principalOwnerAssignment.RoleDefinitionName -eq 'Owner') { Write-Verbose "Successfully assigned ownership of '$ResourceGroupName' to the Test Application '$TestApplicationId'" } else { - Write-Warning "The 'Owner' role for '$ResourceGroupName' could not be assigned. " + ` - "You may need to manually grant 'Owner' for the resource group to the " + ` - "Test Application '$TestApplicationId' if it does not have subscription-level permissions." + Write-Warning ("The 'Owner' role for '$ResourceGroupName' could not be assigned. " + + "You may need to manually grant 'Owner' for the resource group to the " + + "Test Application '$TestApplicationId' if it does not have subscription-level permissions.") } }