File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Common/Commands.ScenarioTests.Common
ServiceManagement/Common/Commands.ScenarioTest/ServiceManagement Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public class EnvironmentSetupHelper
41
41
private AzureAccount testAccount ;
42
42
43
43
private const string PackageDirectoryFromCommon = @"..\..\..\..\Package\Debug" ;
44
- private const string PackageDirectory = @"..\..\..\..\..\Package\Debug" ;
44
+ public const string PackageDirectory = @"..\..\..\..\..\Package\Debug" ;
45
45
46
46
protected List < string > modules ;
47
47
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public void RunNewAzureComputeParameterObjectTests()
90
90
this . RunPowerShellTest ( "Run-NewAzureComputeParameterObjectTests" ) ;
91
91
}
92
92
93
- [ Fact ( Skip = "Skipping failing test" ) ]
93
+ [ Fact ]
94
94
[ Trait ( Category . Service , Category . ServiceManagement ) ]
95
95
[ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
96
96
[ Trait ( Category . AcceptanceType , Category . BVT ) ]
Original file line number Diff line number Diff line change @@ -54,8 +54,9 @@ protected void RunPowerShellTest(params string[] scripts)
54
54
SetupManagementClients ( ) ;
55
55
56
56
List < string > modules = new List < string > ( ) ;
57
- modules . Add ( @"..\..\..\..\..\Package\Debug\ServiceManagement\Azure\Compute\AzurePreview.psd1" ) ;
58
- modules . Add ( @"..\..\..\..\..\Package\Debug\ServiceManagement\Azure\Compute\PIR.psd1" ) ;
57
+
58
+ modules . Add ( Path . Combine ( EnvironmentSetupHelper . PackageDirectory , @"ServiceManagement\Azure\Compute\AzurePreview.psd1" ) ) ;
59
+ modules . Add ( Path . Combine ( EnvironmentSetupHelper . PackageDirectory , @"ServiceManagement\Azure\Compute\PIR.psd1" ) ) ;
59
60
modules . AddRange ( Directory . GetFiles ( @"Resources\ServiceManagement" . AsAbsoluteLocation ( ) , "*.ps1" ) . ToList ( ) ) ;
60
61
61
62
helper . SetupEnvironment ( AzureModule . AzureServiceManagement ) ;
You can’t perform that action at this time.
0 commit comments