@@ -10,7 +10,7 @@ public class NetworkTestRunner
10
10
11
11
protected NetworkTestRunner ( ITestOutputHelper output )
12
12
{
13
- TestRunner = TestFx . TestManager . CreateInstance ( output )
13
+ TestRunner = TestManager . CreateInstance ( output )
14
14
. WithNewPsScriptFilename ( $ "{ GetType ( ) . Name } .ps1")
15
15
. WithProjectSubfolderForTests ( "ScenarioTests" )
16
16
. WithCommonPsScripts ( new [ ]
@@ -27,6 +27,7 @@ protected NetworkTestRunner(ITestOutputHelper output)
27
27
helper . GetRMModulePath ( "AzureRM.Storage.psd1" ) ,
28
28
helper . GetRMModulePath ( "AzureRM.ContainerInstance.psd1" ) ,
29
29
helper . GetRMModulePath ( "AzureRM.OperationalInsights.psd1" ) ,
30
+ helper . GetRMModulePath ( "AzureRM.ManagedServiceIdentity.psd1" ) ,
30
31
} )
31
32
. WithNewRecordMatcherArguments (
32
33
userAgentsToIgnore : new Dictionary < string , string >
@@ -40,6 +41,7 @@ protected NetworkTestRunner(ITestOutputHelper output)
40
41
{ "Microsoft.Features" , null } ,
41
42
{ "Microsoft.Authorization" , null } ,
42
43
{ "Microsoft.Storage" , null } ,
44
+ { "Microsoft.ManagedServiceIdentity" , null } ,
43
45
}
44
46
)
45
47
. Build ( ) ;
0 commit comments