Signed-off-by: Tomek Grabiec <tgrab...@gmail.com>
---
 regression/jvm/ArrayExceptionsTest.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/regression/jvm/ArrayExceptionsTest.java 
b/regression/jvm/ArrayExceptionsTest.java
index d1a726d..3d5300e 100644
--- a/regression/jvm/ArrayExceptionsTest.java
+++ b/regression/jvm/ArrayExceptionsTest.java
@@ -91,7 +91,7 @@ public class ArrayExceptionsTest extends TestCase {
         Object[] array = new String[3];
 
         try {
-            array[2] = new Integer(0);
+            array[2] = new ArrayExceptionsTest();
         } catch (ArrayStoreException e) {
             caught = true;
         }
@@ -174,7 +174,7 @@ public class ArrayExceptionsTest extends TestCase {
 
     public static void main(String args[]) {
         testArrayLoad();
-        /* FIXME: testArrayStore(); */
+        testArrayStore();
         testArraylengthThrowsNullPointerException();
         testAnewarrayThrowsNegativeArraySizeException();
         testNewarrayThrowsNegativeArraySizeException();
-- 
1.6.0.6


------------------------------------------------------------------------------
_______________________________________________
Jatovm-devel mailing list
Jatovm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jatovm-devel

Reply via email to