@@ -101,19 +101,18 @@ public static IEnumerable<object[]> Configurations
101101 {
102102 get
103103 {
104- yield return new object [ ] { MakeFakeConfiguration ( "123456" , "654321" , true ) , new [ ] { typeof ( TwitchService ) , typeof ( MixerService ) , typeof ( FakeService ) } } ;
105- yield return new object [ ] { MakeFakeConfiguration ( "" , "654321" , true ) , new [ ] { typeof ( MixerService ) , typeof ( FakeService ) } } ;
106- yield return new object [ ] { MakeFakeConfiguration ( "" , "" , true ) , new [ ] { typeof ( FakeService ) } } ;
107- yield return new object [ ] { MakeFakeConfiguration ( "123456" , "654321" , false ) , new [ ] { typeof ( TwitchService ) , typeof ( MixerService ) } } ;
104+ yield return new object [ ] { MakeFakeConfiguration ( "123456" , true ) , new [ ] { typeof ( TwitchService ) , typeof ( FakeService ) } } ;
105+ yield return new object [ ] { MakeFakeConfiguration ( "" , true ) , new [ ] { typeof ( FakeService ) } } ;
106+ yield return new object [ ] { MakeFakeConfiguration ( "123456" , false ) , new [ ] { typeof ( TwitchService ) } } ;
108107 }
109108 }
110109
111- private static Dictionary < string , string > MakeFakeConfiguration ( string twitchClientId , string mixerClientId , bool enableFake )
110+ private static Dictionary < string , string > MakeFakeConfiguration ( string twitchClientId , bool enableFake )
112111 {
113112 return new Dictionary < string , string >
114113 {
115114 { "StreamServices:Twitch:ClientId" , twitchClientId } ,
116- { "StreamServices:Mixer:Channel" , mixerClientId } ,
115+ // {"StreamServices:Mixer:Channel", mixerClientId},
117116 { "StreamServices:Fake:Enabled" , enableFake . ToString ( ) } ,
118117 { "FritzBot:ServerUrl" , "http://localhost:80" } ,
119118 { "AzureServices:HatDetection:ProjectId" , Guid . NewGuid ( ) . ToString ( ) }
0 commit comments