diff --git a/Integration/org.egovframe.rte.itl.integration/src/test/java/org/egovframe/rte/itl/integration/message/typed/TypedListTest.java b/Integration/org.egovframe.rte.itl.integration/src/test/java/org/egovframe/rte/itl/integration/message/typed/TypedListTest.java index fb8e9169..c0efaab5 100644 --- a/Integration/org.egovframe.rte.itl.integration/src/test/java/org/egovframe/rte/itl/integration/message/typed/TypedListTest.java +++ b/Integration/org.egovframe.rte.itl.integration/src/test/java/org/egovframe/rte/itl/integration/message/typed/TypedListTest.java @@ -706,7 +706,7 @@ public void testToArray() throws Exception // null try { - list.toArray(null); + list.toArray((Object[])null); fail(); } catch (NullPointerException e)