File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/Common/Commands.ScenarioTest/Resources/ServiceManagement Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,11 @@ Tests Create-AzureVM with valid information.
18
18
#>
19
19
function Test-GetAzureVM
20
20
{
21
- # Setup
21
+ # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound
22
+ # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'.
23
+ $ErrorActionPreference = ' SilentlyContinue' ;
22
24
25
+ # Setup
23
26
$location = Get-DefaultLocation
24
27
$imgName = Get-DefaultImage $location
25
28
@@ -74,6 +77,10 @@ function Run-ServiceManagementCloudExceptionTests
74
77
# Test Start/Stop-AzureVM for Multiple VMs
75
78
function Run-StartAndStopMultipleVirtualMachinesTest
76
79
{
80
+ # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound
81
+ # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'.
82
+ $ErrorActionPreference = ' SilentlyContinue' ;
83
+
77
84
# Setup
78
85
$location = Get-DefaultLocation ;
79
86
$imgName = Get-DefaultImage $location ;
You can’t perform that action at this time.
0 commit comments