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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@xamarin.com>2015-12-04 19:57:14 +0300
committerMatt Ward <matt.ward@xamarin.com>2015-12-08 00:58:28 +0300
commit5c3350eca908d12ecceb44edcf0e7c2cf49f5b4a (patch)
treeb71bac0bcf35c6d6618121687a0701038e3a9ca4 /main
parent218fb87463a273be989592344ed13e1e0699d7f8 (diff)
[UnitTests] Remove obsolete FilePath test.
The # and % characters are no longer considered invalid for a path.
Diffstat (limited to 'main')
-rw-r--r--main/tests/UnitTests/MonoDevelop.Core/FilePathTests.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/main/tests/UnitTests/MonoDevelop.Core/FilePathTests.cs b/main/tests/UnitTests/MonoDevelop.Core/FilePathTests.cs
index 7bf4aeb53e..8a2ad7e3a7 100644
--- a/main/tests/UnitTests/MonoDevelop.Core/FilePathTests.cs
+++ b/main/tests/UnitTests/MonoDevelop.Core/FilePathTests.cs
@@ -157,14 +157,6 @@ namespace MonoDevelop.Core
}
[Test]
- public void InvalidCharactersTests ()
- {
- // Assert compatibility so we know something changed over here.
- Assert.That (FilePath.GetInvalidFileNameChars (), Is.EquivalentTo (Path.GetInvalidFileNameChars ().Concat ("#%&")));
- Assert.That (FilePath.GetInvalidPathChars (), Is.EquivalentTo (Path.GetInvalidPathChars ().Concat ("#%&")));
- }
-
- [Test]
public void InvalidCharactersAreCloned ()
{
Assert.AreNotSame (FilePath.GetInvalidFileNameChars (), FilePath.GetInvalidFileNameChars ());