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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorSteve Pfister <steveisok@users.noreply.github.com>2019-12-31 05:05:14 +0300
committerGitHub <noreply@github.com>2019-12-31 05:05:14 +0300
commit6f248326465cb8c887f3c59672343155689faa79 (patch)
tree900a7898666abe489462478cdaf9e16ccc11728f /mcs
parent400fb9c2cb0a47948b27b78d154f91ac40e5491e (diff)
Pull in DirectoryInfo Invalidate After Create Fix (#18310)
* Bump to mono/corefx@bff1d77
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/Test/System.IO/DirectoryInfoTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/Test/System.IO/DirectoryInfoTest.cs b/mcs/class/corlib/Test/System.IO/DirectoryInfoTest.cs
index 67b66fa914a..002eca517cc 100644
--- a/mcs/class/corlib/Test/System.IO/DirectoryInfoTest.cs
+++ b/mcs/class/corlib/Test/System.IO/DirectoryInfoTest.cs
@@ -250,7 +250,7 @@ namespace MonoTests.System.IO
DirectoryInfo info = new DirectoryInfo (path);
Assert.IsFalse (info.Exists, "#1");
info.Create ();
- Assert.IsFalse (info.Exists, "#2");
+ Assert.IsTrue (info.Exists, "#2");
info = new DirectoryInfo (path);
Assert.IsTrue (info.Exists, "#3");
} finally {