Skip to content

Commit 19c0963

Browse files
committed
Task 41737: Merge feat/azure-split to main: Step 3 - Tie everything together
- Fixed missing ;
1 parent ad7ea2f commit 19c0963

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Microsoft.Data.SqlClient.Extensions/Azure/test/DefaultAuthProviderTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public void AuthProviderInstalled()
2626
// via Theory data so that we detect any new methods that don't meet
2727
// our expectations.
2828
#if NET
29-
var methods = Enum.GetValues<SqlAuthenticationMethod>()
29+
var methods = Enum.GetValues<SqlAuthenticationMethod>();
3030
#else
31-
var methods = Enum.GetValues(typeof(SqlAuthenticationMethod)).Cast<SqlAuthenticationMethod>()
31+
var methods = Enum.GetValues(typeof(SqlAuthenticationMethod)).Cast<SqlAuthenticationMethod>();
3232
#endif
3333

3434
foreach (var method in methods)

0 commit comments

Comments
 (0)