Skip to content

Commit da9cce5

Browse files
committed
Fix Test
1 parent bb38103 commit da9cce5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/ResourceManager/Compute/AzureRM.Compute.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ TypesToProcess = @(
6262
FormatsToProcess = @(
6363
'.\Microsoft.Azure.Commands.Compute.format.ps1xml',
6464
'.\Microsoft.Azure.Commands.Compute.format.generated.ps1xml',
65-
'.\Microsoft.Azure.Commands.Compute.Automation.format.generated.ps1xml',
65+
'.\Microsoft.Azure.Commands.Compute.Automation.format.generated.ps1xml'
6666
)
6767

6868
# Modules to import as nested modules of the module specified in ModuleToProcess

src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1451,7 +1451,7 @@ function Test-VirtualMachineTags
14511451
$tags = @{Name = "test1"; Value = "testval1"}, @{ Name = "test2"; Value = "testval2" };
14521452
$st = New-AzureRmVM -ResourceGroupName $rgname -Location $loc -VM $p -Tags $tags;
14531453
Assert-NotNull $st.RequestId;
1454-
Assert-NotNull $st.StatusCode;
1454+
Assert-NotNull $st.Status;
14551455
$vm = Get-AzureRmVM -ResourceGroupName $rgname -Name $vmname;
14561456
Assert-NotNull $vm.RequestId;
14571457
Assert-NotNull $vm.StatusCode;

src/ResourceManager/Compute/Commands.Compute.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<package id="Microsoft.Azure.Gallery" version="2.6.2-preview" targetFramework="net45" />
88
<package id="Microsoft.Azure.Graph.RBAC" version="1.7.0-preview" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Authorization" version="1.0.0" targetFramework="net45" />
10-
<!--<package id="Microsoft.Azure.Management.Compute" version="9.0.1-preview" targetFramework="net45" />-->
10+
<!--<package id="Microsoft.Azure.Management.Compute" version="9.0.3-preview" targetFramework="net45" />-->
1111
<package id="Microsoft.Azure.Management.Network" version="2.0.10-preview" targetFramework="net45" />
1212
<package id="Microsoft.Azure.Management.Resources" version="2.18.7-preview" targetFramework="net45" />
1313
<package id="Microsoft.Azure.Management.Storage" version="2.4.0-preview" targetFramework="net45" />

src/ResourceManager/Compute/Commands.Compute/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<package id="Microsoft.Azure.Graph.RBAC" version="1.7.0-preview" targetFramework="net45" />
1010
<package id="Microsoft.Azure.KeyVault.Core" version="1.0.0" targetFramework="net45" />
1111
<package id="Microsoft.Azure.Management.Authorization" version="1.0.0" targetFramework="net45" />
12-
<!--<package id="Microsoft.Azure.Management.Compute" version="9.0.1-preview" targetFramework="net45" />-->
12+
<!--<package id="Microsoft.Azure.Management.Compute" version="9.0.3-preview" targetFramework="net45" />-->
1313
<package id="Microsoft.Azure.Management.Network" version="2.0.10-preview" targetFramework="net45" />
1414
<package id="Microsoft.Azure.Management.Resources" version="2.18.7-preview" targetFramework="net45" />
1515
<package id="Microsoft.Azure.Management.Storage" version="2.4.0-preview" targetFramework="net45" />

0 commit comments

Comments
 (0)