Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@

namespace Microsoft.Data.SqlClient.ManualTesting.Tests.AlwaysEncrypted
{
public class CoreCryptoTests : IClassFixture<SQLSetupStrategyCertStoreProvider>
public class CoreCryptoTests
{
// Synapse: Always Encrypted not supported in Azure Synapse.
[ConditionalFact(typeof(DataTestUtility), nameof(DataTestUtility.AreConnStringsSetup), nameof(DataTestUtility.IsNotAzureSynapse))]
[Fact]
public void TestAeadCryptoWithNativeBaseline()
{
// Initialize the reader for resource text file which has the native code generated baseline.
Expand Down Expand Up @@ -45,8 +44,7 @@ public void TestAeadCryptoWithNativeBaseline()
}
}

// Synapse: Always Encrypted not supported in Azure Synapse.
[ConditionalFact(typeof(DataTestUtility), nameof(DataTestUtility.AreConnStringsSetup), nameof(DataTestUtility.IsNotAzureSynapse))]
[Fact]
public void TestRsaCryptoWithNativeBaseline()
{
// Initialize the reader for resource text file which has the native code generated baseline.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;

namespace Microsoft.Data.SqlClient.ManualTesting.Tests.AlwaysEncrypted.Setup
{
Expand Down Expand Up @@ -174,7 +173,7 @@ internal class CryptoNativeBaselineReader
/// <summary>
/// Parameter Data End identifier, to search inside resource text file.
/// </summary>
private static readonly Regex regexEndParameterIdentifier = new Regex(@"\r");
private static readonly Regex regexEndParameterIdentifier = new Regex(Environment.NewLine);

private readonly IList<CryptoVector> m_CryptoVectors;

Expand Down
Loading