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
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2004-11-28 00:09:54 +0300
committerMartin Baulig <martin@novell.com>2004-11-28 00:09:54 +0300
commit5301085149cd3b6aa327ac96fee59c54ed20795d (patch)
tree121d5e4a1fb4ce443f329f703f0fc29f7c24aafa /mcs/class/Mono.C5
parentc5b33960f37ce06ef317d3af8b8dcd7e5026e5a3 (diff)
Killed two more FIXME's.
svn path=/trunk/mcs/; revision=36697
Diffstat (limited to 'mcs/class/Mono.C5')
-rw-r--r--mcs/class/Mono.C5/Test/linkedlists/HashedLinkedListTest.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/class/Mono.C5/Test/linkedlists/HashedLinkedListTest.cs b/mcs/class/Mono.C5/Test/linkedlists/HashedLinkedListTest.cs
index 4db56980987..defd1f6e255 100644
--- a/mcs/class/Mono.C5/Test/linkedlists/HashedLinkedListTest.cs
+++ b/mcs/class/Mono.C5/Test/linkedlists/HashedLinkedListTest.cs
@@ -955,7 +955,6 @@ namespace nunit.linkedlists.hashed
}
-#if FIXME
[Test]
public void InsertBefore()
{
@@ -973,7 +972,6 @@ namespace nunit.linkedlists.hashed
Assert.IsTrue(lst.Check());
Assert.IsTrue(IC.eq(lst, 7, 2, 8, 3, 4, 9, 5));
}
-#endif
[Test]
@@ -988,7 +986,6 @@ namespace nunit.linkedlists.hashed
}
-#if FIXME
[Test]
public void InsertAfter()
{
@@ -1007,7 +1004,6 @@ namespace nunit.linkedlists.hashed
Assert.IsTrue(lst.Check());
Assert.IsTrue(IC.eq(lst, 1, 8, 2, 7, 3, 4, 5, 9));
}
-#endif
[Test]