From 1af08214b38690bff770740c9f12145ea07edbb1 Mon Sep 17 00:00:00 2001 From: jei007 <51683963+jei007@users.noreply.github.com> Date: Wed, 19 Apr 2023 08:33:24 +0900 Subject: [PATCH] Update TypedListTest.java --- .../rte/itl/integration/message/typed/TypedListTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)