Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit d1674b9

Browse files
Fixes bug 1958
Another remaining test for sameness that we agreed to remove (i.e. cost to synchronize too high in comparison to the benefit) There are a few other tests like that (they all test sameness of codepointfilter creation). I will review them as a separate workitem as they are probably also not very reliable. But for now, I am removing this test as it is actually failing during runs.
1 parent 1dc700d commit d1674b9

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/System.Text.Encodings.Web/tests/UnicodeHelpersTests.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ public unsafe class UnicodeHelpersTests
2020

2121
private static readonly UTF8Encoding _utf8EncodingThrowOnInvalidBytes = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
2222

23-
[Fact]
24-
public void GetDefinedCharacterBitmap_ReturnsSingletonInstance()
25-
{
26-
// Act
27-
uint[] retVal1 = UnicodeHelpers.GetDefinedCharacterBitmap();
28-
uint[] retVal2 = UnicodeHelpers.GetDefinedCharacterBitmap();
29-
30-
// Assert
31-
Assert.Same(retVal1, retVal2);
32-
}
33-
3423
[Fact]
3524
public void GetScalarValueFromUtf16()
3625
{

0 commit comments

Comments
 (0)