diff --git a/test/Microsoft.Data.Analysis.Tests/DataFrame.IOTests.cs b/test/Microsoft.Data.Analysis.Tests/DataFrame.IOTests.cs index 09e95bcae1..05565673b0 100644 --- a/test/Microsoft.Data.Analysis.Tests/DataFrame.IOTests.cs +++ b/test/Microsoft.Data.Analysis.Tests/DataFrame.IOTests.cs @@ -1049,7 +1049,7 @@ public void TestSaveToDataTable() Assert.Equal(vals, resVals); } - [X86X64FactAttribute("The SQLite un-managed code, SQLite.interop, only supports x86/x64 architectures.")] + [X86X64Fact("The SQLite un-managed code, SQLite.interop, only supports x86/x64 architectures.")] public async void TestSQLite() { var (columns, vals) = GetTestData(); diff --git a/test/Microsoft.Data.Analysis.Tests/Microsoft.Data.Analysis.Tests.csproj b/test/Microsoft.Data.Analysis.Tests/Microsoft.Data.Analysis.Tests.csproj index dafae0d942..ce26b374d1 100644 --- a/test/Microsoft.Data.Analysis.Tests/Microsoft.Data.Analysis.Tests.csproj +++ b/test/Microsoft.Data.Analysis.Tests/Microsoft.Data.Analysis.Tests.csproj @@ -7,9 +7,7 @@ - - diff --git a/test/Microsoft.ML.TestFramework/Attributes/X64FactAttribute.cs b/test/Microsoft.ML.TestFrameworkCommon/Attributes/X64FactAttribute.cs similarity index 93% rename from test/Microsoft.ML.TestFramework/Attributes/X64FactAttribute.cs rename to test/Microsoft.ML.TestFrameworkCommon/Attributes/X64FactAttribute.cs index fcc015a73b..993b4c29cd 100644 --- a/test/Microsoft.ML.TestFramework/Attributes/X64FactAttribute.cs +++ b/test/Microsoft.ML.TestFrameworkCommon/Attributes/X64FactAttribute.cs @@ -3,7 +3,6 @@ // See the LICENSE file in the project root for more information. using System; -using Microsoft.ML.TestFrameworkCommon.Attributes; namespace Microsoft.ML.TestFramework.Attributes { diff --git a/test/Microsoft.ML.TestFramework/Attributes/X86X64FactAttribute.cs b/test/Microsoft.ML.TestFrameworkCommon/Attributes/X86X64FactAttribute.cs similarity index 94% rename from test/Microsoft.ML.TestFramework/Attributes/X86X64FactAttribute.cs rename to test/Microsoft.ML.TestFrameworkCommon/Attributes/X86X64FactAttribute.cs index c4f6c2553e..27c8095a1f 100644 --- a/test/Microsoft.ML.TestFramework/Attributes/X86X64FactAttribute.cs +++ b/test/Microsoft.ML.TestFrameworkCommon/Attributes/X86X64FactAttribute.cs @@ -4,7 +4,6 @@ using System; using System.Runtime.InteropServices; -using Microsoft.ML.TestFrameworkCommon.Attributes; namespace Microsoft.ML.TestFramework.Attributes {