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

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

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