Skip to content

Commit 02d1f70

Browse files
committed
Improve revert and sort usings
1 parent 1bc08b5 commit 02d1f70

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Microsoft.Data.SqlClient/tests/ManualTests/DataCommon/DataTestUtility.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
using System.IO;
1212
using System.Linq;
1313
using System.Net;
14+
using System.Net.NetworkInformation;
1415
using System.Net.Sockets;
16+
using System.Runtime.InteropServices;
1517
using System.Security;
18+
using System.Security.Principal;
19+
using System.Text;
1620
using System.Threading;
1721
using System.Threading.Tasks;
22+
using Azure.Core;
23+
using Azure.Identity;
1824
using Microsoft.Data.SqlClient.TestUtilities;
1925
using Microsoft.Identity.Client;
2026
using Xunit;
21-
using System.Net.NetworkInformation;
22-
using System.Text;
23-
using System.Security.Principal;
24-
using Azure.Identity;
25-
using Azure.Core;
26-
using System.Runtime.InteropServices;
2727

2828
namespace Microsoft.Data.SqlClient.ManualTesting.Tests
2929
{
@@ -134,8 +134,6 @@ public static bool IsTDS8Supported
134134
}
135135
}
136136

137-
public static bool IsNotX86Architecture => RuntimeInformation.ProcessArchitecture != Architecture.X86;
138-
139137
static DataTestUtility()
140138
{
141139
Config c = Config.Load();
@@ -328,6 +326,8 @@ public static bool GetSQLServerStatusOnTDS8(string connectionString)
328326
return isTDS8Supported;
329327
}
330328

329+
public static bool IsNotX86Architecture => RuntimeInformation.ProcessArchitecture != Architecture.X86;
330+
331331
public static bool IsDatabasePresent(string name)
332332
{
333333
AvailableDatabases = AvailableDatabases ?? new Dictionary<string, bool>();

0 commit comments

Comments
 (0)