Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Perez Rodriguez <joperezr@microsoft.com>2016-08-04 23:05:12 +0300
committerGitHub <noreply@github.com>2016-08-04 23:05:12 +0300
commit62334804aa655a250838eefed68553f357ebec5f (patch)
tree696e2c28f9a730b83bbaa3cbad959034a3146e42 /src/System.IO/tests/StringReader
parenta6b07d58c9ef5bd2e64f594121f7c13b6655515a (diff)
Reving up the versions of the contracts where we have added Apis for netcoreapp1.1 (#10531)
Reving up the versions of the contracts where we have added Apis for netcoreapp1.1
Diffstat (limited to 'src/System.IO/tests/StringReader')
-rw-r--r--src/System.IO/tests/StringReader/StringReader.CtorTests.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/System.IO/tests/StringReader/StringReader.CtorTests.cs b/src/System.IO/tests/StringReader/StringReader.CtorTests.cs
index 2144054af3..d330e68b38 100644
--- a/src/System.IO/tests/StringReader/StringReader.CtorTests.cs
+++ b/src/System.IO/tests/StringReader/StringReader.CtorTests.cs
@@ -156,6 +156,7 @@ namespace System.IO.Tests
Assert.Equal(str1, sr.ReadToEnd());
}
+#if netstandard17
[Fact]
public static void Closed_DisposedExceptions()
{
@@ -163,6 +164,7 @@ namespace System.IO.Tests
sr.Close();
ValidateDisposedExceptions(sr);
}
+#endif //netstandard17
[Fact]
public static void Disposed_DisposedExceptions()