* tests/regression/bugzilla/PR119.java: Compile fix.
authorStefan Ring <stefan@complang.tuwien.ac.at>
Fri, 26 Jun 2009 14:52:10 +0000 (16:52 +0200)
committerStefan Ring <stefan@complang.tuwien.ac.at>
Fri, 26 Jun 2009 14:52:10 +0000 (16:52 +0200)
tests/regression/bugzilla/PR119.java

index 62d539ce161da211372e0b08497cc99b01d3a3db..02c9fab518ad9335db9424ee88f0628135090515 100644 (file)
@@ -35,6 +35,6 @@ public class PR119 {
     public void test() {
         Integer[] a = new Integer[1];
         Array.set(a, 0, new Integer(i));
-        assertEquals(i, a[0]);
+        assertEquals(new Integer(i), a[0]);
     }
 }