summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeremy Condra <gcondra@google.com>2012-07-26 16:35:12 -0700
committerGeremy Condra <gcondra@google.com>2012-07-26 16:35:44 -0700
commitd1725822187cb9bbe4d93fe39135b17ecb3130ee (patch)
tree25365ac2371ca0ac22a6e487e47aaed2941d3126
parent21c39e7750a582c9a16c7530ad391c1ac0230885 (diff)
downloadlibcore-d1725822187cb9bbe4d93fe39135b17ecb3130ee.zip
libcore-d1725822187cb9bbe4d93fe39135b17ecb3130ee.tar.gz
libcore-d1725822187cb9bbe4d93fe39135b17ecb3130ee.tar.bz2
Tests for the CertBlacklist.
Change-Id: Id453884228d10374b03f06c5fc795b68811ecc56
-rw-r--r--luni/src/test/java/com/android/org/bouncycastle/jce/provider/CertBlacklistTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/test/java/com/android/org/bouncycastle/jce/provider/CertBlacklistTest.java b/luni/src/test/java/com/android/org/bouncycastle/jce/provider/CertBlacklistTest.java
index 85e360e..bd12aea 100644
--- a/luni/src/test/java/com/android/org/bouncycastle/jce/provider/CertBlacklistTest.java
+++ b/luni/src/test/java/com/android/org/bouncycastle/jce/provider/CertBlacklistTest.java
@@ -64,7 +64,7 @@ public class CertBlacklistTest extends TestCase {
// convert the results to a hashset of strings
Set<String> results = new HashSet<String>();
for (byte[] value: arr) {
- results.add(new String(Hex.encode(value)));
+ results.add(new String(value));
}
return results;
}