File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
StackExchange.Redis.Tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ protected void OnInternalError(object sender, InternalErrorEventArgs e)
106
106
private static AsyncLocal < int > sharedFailCount = new AsyncLocal < int > ( ) ;
107
107
private volatile int expectedFailCount ;
108
108
109
- private static readonly List < string > privateExceptions = new List < string > ( ) ;
109
+ private readonly List < string > privateExceptions = new List < string > ( ) ;
110
110
private static readonly List < string > backgroundExceptions = new List < string > ( ) ;
111
111
112
112
public void ClearAmbientFailures ( )
@@ -167,7 +167,7 @@ public void Teardown()
167
167
Output . WriteLine ( item ) ;
168
168
}
169
169
}
170
- Assert . True ( false , $ "There were { privateFailCount } private and { sharedFailCount } ambient exceptions; expected { expectedFailCount } .") ;
170
+ Assert . True ( false , $ "There were { privateFailCount } private and { sharedFailCount . Value } ambient exceptions; expected { expectedFailCount } .") ;
171
171
}
172
172
}
173
173
You can’t perform that action at this time.
0 commit comments