@@ -101,19 +101,18 @@ public static IEnumerable<object[]> Configurations
101
101
{
102
102
get
103
103
{
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 ) } } ;
108
107
}
109
108
}
110
109
111
- private static Dictionary < string , string > MakeFakeConfiguration ( string twitchClientId , string mixerClientId , bool enableFake )
110
+ private static Dictionary < string , string > MakeFakeConfiguration ( string twitchClientId , bool enableFake )
112
111
{
113
112
return new Dictionary < string , string >
114
113
{
115
114
{ "StreamServices:Twitch:ClientId" , twitchClientId } ,
116
- { "StreamServices:Mixer:Channel" , mixerClientId } ,
115
+ // {"StreamServices:Mixer:Channel", mixerClientId},
117
116
{ "StreamServices:Fake:Enabled" , enableFake . ToString ( ) } ,
118
117
{ "FritzBot:ServerUrl" , "http://localhost:80" } ,
119
118
{ "AzureServices:HatDetection:ProjectId" , Guid . NewGuid ( ) . ToString ( ) }
0 commit comments