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 ad7ea2f commit 19c0963Copy full SHA for 19c0963
1 file changed
src/Microsoft.Data.SqlClient.Extensions/Azure/test/DefaultAuthProviderTests.cs
@@ -26,9 +26,9 @@ public void AuthProviderInstalled()
26
// via Theory data so that we detect any new methods that don't meet
27
// our expectations.
28
#if NET
29
- var methods = Enum.GetValues<SqlAuthenticationMethod>()
+ var methods = Enum.GetValues<SqlAuthenticationMethod>();
30
#else
31
- var methods = Enum.GetValues(typeof(SqlAuthenticationMethod)).Cast<SqlAuthenticationMethod>()
+ var methods = Enum.GetValues(typeof(SqlAuthenticationMethod)).Cast<SqlAuthenticationMethod>();
32
#endif
33
34
foreach (var method in methods)
0 commit comments