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
This commit is contained in:
Mark Davis 2009-04-16 19:13:36 +00:00
parent c1bac839f9
commit 0f3a0ee9d0

View File

@ -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 + " ";