Skip to content

Commit 6ae7f70

Browse files
committed
Remove log line
1 parent 3125757 commit 6ae7f70

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/Compute/Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,13 @@ public void TestAzureDiskEncryptionExtension()
109109
TestRunner.RunTestScript("Test-AzureDiskEncryptionExtension");
110110
}
111111

112+
[Fact(Skip = "TODO: only works for live mode")]
113+
[Trait(Category.RunType, Category.LiveOnly)]
114+
public void TestAzureDiskEncryptionExtensionDualPassToSinglePassMigration()
115+
{
116+
TestRunner.RunTestScript("Test-AzureDiskEncryptionExtensionDualPassToSinglePassMigration");
117+
}
118+
112119
[Fact]
113120
[Trait(Category.AcceptanceType, Category.CheckIn)]
114121
public void TestAzureDiskEncryptionExtensionSinglePass()

src/Compute/Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,8 +861,6 @@ public override void ExecuteCmdlet()
861861
&& (this.Force.IsPresent || ((this.Migrate.IsPresent || this.MigrationRecovery.IsPresent) ? this.ShouldContinue(Properties.Resources.MigrateAzureDiskEncryptionConfirmation, Properties.Resources.MigrateAzureDiskEncryptionCaption)
862862
: this.ShouldContinue(Properties.Resources.EnableAzureDiskEncryptionConfirmation, Properties.Resources.EnableAzureDiskEncryptionCaption))))
863863
{
864-
this.WriteWarning("********THIS CMDLET IS GENERATED FROM A LOCAL PS BUILD. ********");
865-
866864
VirtualMachine virtualMachineResponse = this.ComputeClient.ComputeManagementClient.VirtualMachines.GetWithInstanceView(
867865
this.ResourceGroupName, VMName).Body;
868866

0 commit comments

Comments
 (0)