summaryrefslogtreecommitdiffstats
path: root/icu4j/main/tests
diff options
context:
space:
mode:
authorYoshito Umaoka <yoshito_umaoka@us.ibm.com>2015-02-23 10:32:00 +0000
committerFredrik Roubert <roubert@google.com>2015-02-23 18:13:02 +0100
commitbd746cdd6ba58ae0104b1976c5909460326c8dca (patch)
tree7e47dafe29be5cf369f4793dcbfc392a5bc3a0dd /icu4j/main/tests
parente173918025e91ee113da17ee9a660877c522c4a5 (diff)
downloadandroid_external_icu-bd746cdd6ba58ae0104b1976c5909460326c8dca.tar.gz
android_external_icu-bd746cdd6ba58ae0104b1976c5909460326c8dca.tar.bz2
android_external_icu-bd746cdd6ba58ae0104b1976c5909460326c8dca.zip
Cherry-pick: ticket:11540: Fixed a serialization coverage test problem introduced by the recent fix for JarURLHandler(#11521).
http://bugs.icu-project.org/trac/changeset/37050 Change-Id: Ia092878aeec651c02c960b2a9d89a60a8f7c38e9
Diffstat (limited to 'icu4j/main/tests')
-rw-r--r--icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CoverageTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CoverageTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CoverageTest.java
index dba46335b..f5581f104 100644
--- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CoverageTest.java
+++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CoverageTest.java
@@ -137,7 +137,7 @@ public class CoverageTest extends CompatibilityTest implements URLHandler.URLVis
int ix = str.lastIndexOf(".class");
if (ix >= 0) {
- String className = "com.ibm.icu" + str.substring(0, ix).replace('/', '.');
+ String className = "com.ibm.icu." + str.substring(0, ix).replace('/', '.');
// Skip things in com.ibm.icu.dev; they're not relevant.
if (className.startsWith("com.ibm.icu.dev.")) {