2005-07-19 Ben Maurer <bmaurer@ximian.com>
authorBen Maurer <benm@mono-cvs.ximian.com>
Wed, 20 Jul 2005 00:44:30 +0000 (00:44 -0000)
committerBen Maurer <benm@mono-cvs.ximian.com>
Wed, 20 Jul 2005 00:44:30 +0000 (00:44 -0000)
* ArrayListTest.cs: The patch below was not committed with the
same text as the patch on the bug. There was an s/1/3. Doing the
patch as specified on the bug makes buildbot work and the test
work on msft

svn path=/trunk/mcs/; revision=47452

mcs/class/corlib/Test/System.Collections/ArrayListTest.cs
mcs/class/corlib/Test/System.Collections/ChangeLog

index cea8175acca80fb77f63a90e0ebcfb78408d8e99..cf804ff70f044b3803b678902b4247c8ac11a202 100644 (file)
@@ -924,12 +924,12 @@ public class ArrayListTest : Assertion {
                        for (int i = 0; i < 3; i++) {
                                char c = (char) obj_chars[i];
                                AssertEquals("range.ToArray didn't work",
-                                            chars[i+1], c);
+                                            chars [i + 3], c);
                        }
                        char[] new_chars = (char[]) b.ToArray (typeof (char));
                        for (int i = 0; i < 3; i++) {
                                AssertEquals("range.ToArray with type didn't work",
-                                            chars[i+1], new_chars[i]);
+                                            chars [i + 3], new_chars [i]);
                        }
 
                }
index d4f78a5d9e41bd7a0ef86389310a4be7e937de7a..29f56a81d0baf240555a977a6223fca38fc0fa02 100644 (file)
@@ -1,3 +1,10 @@
+2005-07-19  Ben Maurer  <bmaurer@ximian.com>
+
+       * ArrayListTest.cs: The patch below was not committed with the
+       same text as the patch on the bug. There was an s/1/3. Doing the
+       patch as specified on the bug makes buildbot work and the test
+       work on msft
+
 2005-07-17  Florian Gross  <flgr@ccan.de>
 
        * ArrayListTest.cs: Test for #75545.