Tests for the CertBlacklist.

(cherry picked from commit d1725822187cb9bbe4d93fe39135b17ecb3130ee)

Bug: http://code.google.com/p/android/issues/detail?id=35547
Change-Id: I29cc61fb3c642c0caf58ef5a74560bbbe4b3ba57
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 @@
         // 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;
     }