@@ -101,11 +101,11 @@ public void Broker_Only()
101101
102102 IEnumerable < IAuthFlow > subject = this . Subject ( AuthMode . Broker ) ;
103103
104- subject . Should ( ) . HaveCount ( 2 ) ;
104+ subject . Should ( ) . HaveCount ( 1 ) ;
105105 subject
106106 . Select ( a => a . GetType ( ) )
107107 . Should ( )
108- . ContainInOrder ( typeof ( CachedAuth ) , typeof ( Broker ) ) ;
108+ . Contain ( typeof ( Broker ) ) ;
109109 }
110110
111111 [ Test ]
@@ -115,12 +115,11 @@ public void Windows10Or11_Defaults()
115115
116116 IEnumerable < IAuthFlow > subject = this . Subject ( AuthMode . Default ) ;
117117
118- subject . Should ( ) . HaveCount ( 3 ) ;
118+ subject . Should ( ) . HaveCount ( 2 ) ;
119119 subject
120120 . Select ( a => a . GetType ( ) )
121121 . Should ( )
122122 . ContainInOrder (
123- typeof ( CachedAuth ) ,
124123 typeof ( Broker ) ,
125124 typeof ( Web ) ) ;
126125 }
@@ -149,12 +148,11 @@ public void Windows10Or11_All()
149148
150149 IEnumerable < IAuthFlow > subject = this . Subject ( AuthMode . All ) ;
151150
152- subject . Should ( ) . HaveCount ( 5 ) ;
151+ subject . Should ( ) . HaveCount ( 4 ) ;
153152 subject
154153 . Select ( a => a . GetType ( ) )
155154 . Should ( )
156155 . ContainInOrder (
157- typeof ( CachedAuth ) ,
158156 typeof ( Broker ) ,
159157 typeof ( Web ) ,
160158 typeof ( DeviceCode ) ) ;
@@ -228,13 +226,12 @@ public void AllModes_Windows10Or11()
228226 IEnumerable < IAuthFlow > subject = this . Subject ( AuthMode . All ) ;
229227
230228 this . pcaWrapperMock . VerifyAll ( ) ;
231- subject . Should ( ) . HaveCount ( 5 ) ;
229+ subject . Should ( ) . HaveCount ( 4 ) ;
232230 subject
233231 . Select ( flow => flow . GetType ( ) )
234232 . Should ( )
235233 . BeEquivalentTo ( new [ ]
236234 {
237- typeof ( CachedAuth ) ,
238235 typeof ( IntegratedWindowsAuthentication ) ,
239236 typeof ( Broker ) ,
240237 typeof ( Web ) ,
0 commit comments