From 0f3a0ee9d072a9b8b452f37c2d3915f5898bfe85 Mon Sep 17 00:00:00 2001 From: Mark Davis Date: Thu, 16 Apr 2009 19:13:36 +0000 Subject: [PATCH] ICU-5667 Could not reproduce in Java. However, added a test. If this still occurs in C (might be simplest to just port the test), then please file a separate bug. X-SVN-Rev: 25796 --- icu4j/src/com/ibm/icu/dev/test/TestFmwk.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4j/src/com/ibm/icu/dev/test/TestFmwk.java b/icu4j/src/com/ibm/icu/dev/test/TestFmwk.java index 9c4d06a498..ed30973e9f 100644 --- a/icu4j/src/com/ibm/icu/dev/test/TestFmwk.java +++ b/icu4j/src/com/ibm/icu/dev/test/TestFmwk.java @@ -1817,8 +1817,8 @@ public class TestFmwk extends AbstractTestLog { return handleAssert(result, message, expected, actual, null, false); } - private boolean handleAssert(boolean result, String message, - String expected, String actual, String relation, boolean flip) { + public boolean handleAssert(boolean result, String message, + Object expected, Object actual, String relation, boolean flip) { if (!result || isVerbose()) { message = message == null ? "" : " " + message; relation = relation == null ? ", got " : " " + relation + " ";