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/class
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2014-01-14 17:45:38 +0400
committerMarek Safar <marek.safar@gmail.com>2014-01-14 17:45:38 +0400
commit27e07c76d82aaec6e6ba2aa76cb9ad04cb4fd22f (patch)
treea60b82a174a119be1bb40e554f8095f0b90dd41e /mcs/class
parentf74fa4a0ac488135dc725f7e9c48a1dc7f34dab2 (diff)
Fixes failing test
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/System/Test/System.Net/IPAddressTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/Test/System.Net/IPAddressTest.cs b/mcs/class/System/Test/System.Net/IPAddressTest.cs
index a07c1a19d92..505bdfb881c 100644
--- a/mcs/class/System/Test/System.Net/IPAddressTest.cs
+++ b/mcs/class/System/Test/System.Net/IPAddressTest.cs
@@ -550,7 +550,7 @@ public class IPAddressTest
[Test]
public void IsIPv6Teredo ()
{
- Assert.IsTrue (IPAddress.Parse ("2001::1").IsIPv6Teredo, "#1");
+ Assert.IsFalse (IPAddress.Parse ("2001::1").IsIPv6Teredo, "#1");
Assert.IsFalse (IPAddress.Parse ("2002::1").IsIPv6Teredo, "#2");
}
#endif