diff --git a/ClosedXML_Tests/OpenXMLTests.cs b/ClosedXML_Tests/OpenXMLTests.cs index 787e170..c0d0ddf 100644 --- a/ClosedXML_Tests/OpenXMLTests.cs +++ b/ClosedXML_Tests/OpenXMLTests.cs @@ -1,19 +1,20 @@ -using System.IO; -using ClosedXML_Examples; using DocumentFormat.OpenXml.Packaging; using NUnit.Framework; -using ClosedXML_Tests.Utils; +using System.IO; namespace ClosedXML_Tests { [TestFixture] public class OpenXMLTests { -#if !APPVEYOR [Test] + [Ignore("Workaround has been included in ClosedXML")] public static void SetPackagePropertiesEntryToNullWithOpenXml() { - // Will fail until https://github.com/OfficeDev/Open-XML-SDK/issues/235 is fixed. + // Fixed in .NET Standard 2.1 + // See: + // https://github.com/OfficeDev/Open-XML-SDK/issues/235 + // https://github.com/dotnet/corefx/issues/23795 using (var stream = TestHelper.GetStreamFromResource(TestHelper.GetResourcePath(@"Examples\PivotTables\PivotTables.xlsx"))) using (var ms = new MemoryStream()) { @@ -25,6 +26,5 @@ } } } -#endif } }