Re-enable disabled DecimalTestData (dotnet/corefx#34975)
authorStephen Toub <stoub@microsoft.com>
Thu, 31 Jan 2019 20:28:35 +0000 (15:28 -0500)
committerGitHub <noreply@github.com>
Thu, 31 Jan 2019 20:28:35 +0000 (15:28 -0500)
Commit migrated from https://github.com/dotnet/corefx/commit/6e56a8fa5e237e5d9789a08918bf22d0fde4d785

src/libraries/System.Memory/tests/ParsersAndFormatters/TestData.cs

index 6863ce5..48a2f96 100644 (file)
@@ -229,7 +229,7 @@ namespace System.Buffers.Text.Tests
                 yield return decimal.MaxValue;
 
                 // negative 0m. The formatter is expected *not* to emit a minus sign in this case.
-                //yield return (new MutableDecimal() { High = 0, Mid = 0, Low = 0, IsNegative = true }).ToDecimal();  // TODO: Re-enable [ActiveIssue("https://github.com/dotnet/coreclr/pull/22300")]
+                yield return (new MutableDecimal() { High = 0, Mid = 0, Low = 0, IsNegative = true }).ToDecimal();
 
                 yield return 0.304m; // Round down
                 yield return -0.304m;
@@ -244,7 +244,7 @@ namespace System.Buffers.Text.Tests
                 yield return 1.00m;
                 yield return 0.00m;
                 yield return -1.00m;
-                //yield return -0.00m; // TODO: Re-enable [ActiveIssue("https://github.com/dotnet/coreclr/pull/22300")]
+                yield return -0.00m;
             }
         }