Fix
authorMiguel de Icaza <miguel@gnome.org>
Fri, 9 Mar 2007 02:41:23 +0000 (02:41 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Fri, 9 Mar 2007 02:41:23 +0000 (02:41 -0000)
svn path=/trunk/mcs/; revision=73983

mcs/class/corlib/Test/System.Collections.Generic/ListTest.cs

index d154994a0fe3c81442353ab10b03360223b16252..086fefd9b904ba987010062dbcc505827ff173b7 100644 (file)
@@ -1113,7 +1113,7 @@ namespace MonoTests.System.Collections.Generic {
                }
                
                [Test]
-               [Expected Exception (typeof (ArugmentOutOfRangeException))]
+               [ExpectedException (typeof (ArugmentOutOfRangeException))]
                public void SetItem_OutOfRange()
                {
                        List<string> list = new List<string>();
@@ -1121,7 +1121,7 @@ namespace MonoTests.System.Collections.Generic {
                }
                
                [Test]
-               [Expected Exception (typeof (ArugmentOutOfRangeException))]
+               [ExpectedException (typeof (ArugmentOutOfRangeException))]
                public void SetItem_IList_OutOfRange()
                {
                        IList<string> list = new List<string>();