We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b7416 commit 88329b7Copy full SHA for 88329b7
src/Authentication/Authentication.Test/TokenCache/TokenCacheStorageTests.cs
@@ -3,6 +3,7 @@
3
using Microsoft.Graph.PowerShell.Authentication.TokenCache;
4
using System;
5
using System.Text;
6
+ using System.Threading;
7
using System.Threading.Tasks;
8
using Xunit;
9
@@ -132,7 +133,7 @@ public void ShouldMakeParallelCallsToTokenCache()
132
133
}
134
135
CleanTokenCache(index.ToString());
- count++;
136
+ Interlocked.Increment(ref count);
137
});
138
139
// Assert
0 commit comments