diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestRunner.cs b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestRunner.cs index 20947967ff41..8ba231f589d1 100644 --- a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestRunner.cs +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestRunner.cs @@ -21,6 +21,7 @@ namespace Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests public class DeploymentManagerTestRunner { protected readonly ITestRunner TestRunner; + protected DeploymentManagerTestRunner(ITestOutputHelper output) { TestRunner = TestManager.CreateInstance(output) @@ -40,10 +41,7 @@ protected DeploymentManagerTestRunner(ITestOutputHelper output) helper.GetRMModulePath(@"Az.DeploymentManager.psd1") }) .WithNewRecordMatcherArguments( - userAgentsToIgnore: new Dictionary - { - - }, + userAgentsToIgnore: new Dictionary(), resourceProviders: new Dictionary { {"Microsoft.Resources", null}, diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs index 1df932d62bb5..23ea7d62ffe9 100644 --- a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs @@ -20,7 +20,6 @@ namespace Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests public class DeploymentManagerTests : DeploymentManagerTestRunner { - public DeploymentManagerTests(ITestOutputHelper output) : base(output) { }