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

Commit ad697e0

Browse files
authored
Fix 19202 (#21648)
1 parent 232f488 commit ad697e0

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/System.Data.Common/tests/System/Data/SqlTypes/SqlDateTimeTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ public void GetHashCodeTest()
226226
}
227227

228228
[Fact]
229-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
230229
public void GetTypeTest()
231230
{
232231
Assert.Equal("System.Data.SqlTypes.SqlDateTime", _test1.GetType().ToString());

src/System.Data.Common/tests/System/Data/SqlTypes/SqlXmlTest.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public void Dispose()
4949
// Test constructor
5050
[Fact] // .ctor (Stream)
5151
//[Category ("NotDotNet")] // Name cannot begin with the '.' character, hexadecimal value 0x00. Line 1, position 2
52-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
5352
public void Constructor2_Stream_Unicode()
5453
{
5554
string xmlStr = "<Employee><FirstName>Varadhan</FirstName><LastName>Veerapuram</LastName></Employee>";
@@ -60,7 +59,6 @@ public void Constructor2_Stream_Unicode()
6059
}
6160

6261
[Fact] // .ctor (Stream)
63-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
6462
public void Constructor2_Stream_Empty()
6563
{
6664
MemoryStream ms = new MemoryStream();
@@ -86,7 +84,6 @@ public void Constructor2_Stream_Null()
8684
}
8785

8886
[Fact] // .ctor (XmlReader)
89-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
9087
public void Constructor3()
9188
{
9289
string xmlStr = "<Employee><FirstName>Varadhan</FirstName><LastName>Veerapuram</LastName></Employee>";
@@ -97,7 +94,6 @@ public void Constructor3()
9794
}
9895

9996
[Fact] // .ctor (XmlReader)
100-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
10197
public void Constructor3_XmlReader_Empty()
10298
{
10399
XmlReaderSettings xs = new XmlReaderSettings();
@@ -126,7 +122,6 @@ public void Constructor3_XmlReader_Null()
126122

127123
[Fact]
128124
//[Category ("NotDotNet")] // Name cannot begin with the '.' character, hexadecimal value 0x00. Line 1, position 2
129-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
130125
public void CreateReader_Stream_Unicode()
131126
{
132127
string xmlStr = "<Employee><FirstName>Varadhan</FirstName><LastName>Veerapuram</LastName></Employee>";
@@ -140,7 +135,6 @@ public void CreateReader_Stream_Unicode()
140135
}
141136

142137
[Fact]
143-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
144138
public void SqlXml_fromXmlReader_CreateReaderTest()
145139
{
146140
string xmlStr = "<Employee><FirstName>Varadhan</FirstName><LastName>Veerapuram</LastName></Employee>";
@@ -154,7 +148,6 @@ public void SqlXml_fromXmlReader_CreateReaderTest()
154148
}
155149

156150
[Fact]
157-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
158151
public void SqlXml_fromZeroLengthStream_CreateReaderTest()
159152
{
160153
MemoryStream stream = new MemoryStream();
@@ -166,7 +159,6 @@ public void SqlXml_fromZeroLengthStream_CreateReaderTest()
166159
}
167160

168161
[Fact]
169-
[ActiveIssue("https://github.com/dotnet/corefx/issues/19202", TargetFrameworkMonikers.UapAot)]
170162
public void SqlXml_fromZeroLengthXmlReader_CreateReaderTest_withFragment()
171163
{
172164
XmlReaderSettings xs = new XmlReaderSettings();

0 commit comments

Comments
 (0)