Skip to content

Commit 462329e

Browse files
committed
Activate tests again
1 parent 09086a1 commit 462329e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/DataStreamTest/DataStreamTest.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
using System.Threading;
1313
using System.Threading.Tasks;
1414
using System.Xml;
15+
using Microsoft.Data.SqlClient.TestUtilities;
1516
using Xunit;
1617

1718
namespace Microsoft.Data.SqlClient.ManualTesting.Tests
@@ -32,7 +33,7 @@ public static void RunAllTestsForSingleServer_NP()
3233
}
3334

3435
//[ActiveIssue("5540")]
35-
[ConditionalFact(typeof(DataTestUtility), nameof(DataTestUtility.AreConnStringsSetup), nameof(DataTestUtility.IsNotAzureServer), Skip = "One test fails.")]
36+
[ConditionalFact(typeof(DataTestUtility), nameof(DataTestUtility.AreConnStringsSetup))]
3637
public static void RunAllTestsForSingleServer_TCP()
3738
{
3839
RunAllTestsForSingleServer(DataTestUtility.TCPConnectionString, false);
@@ -178,7 +179,11 @@ private static void RunAllTestsForSingleServer(string connectionString, bool usi
178179
ReadTextReader(connectionString);
179180
StreamingBlobDataTypes(connectionString);
180181
OutOfOrderGetChars(connectionString);
181-
TestXEventsStreaming(connectionString);
182+
183+
if (!Utils.IsAzureSqlServer(connectionString))
184+
{
185+
TestXEventsStreaming(connectionString);
186+
}
182187

183188
// These tests fail with named pipes, since they try to do DNS lookups on named pipe paths.
184189
if (!usingNamePipes)

0 commit comments

Comments
 (0)