Skip to content

Commit

Permalink
8308156: VerifyCACerts.java misses blank in error output
Browse files Browse the repository at this point in the history
Backport-of: 5a92aae1d967f5be01f05d9cc56c433a5eca61e8
  • Loading branch information
MBaesken committed Jun 13, 2023
1 parent e898048 commit 12d08f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
Expand Up @@ -293,8 +293,8 @@ public static void main(String[] args) throws Exception {
String checksum = HEX.formatHex(md.digest(data));
if (!checksum.equals(CHECKSUM)) {
atLeastOneFailed = true;
System.err.println("ERROR: wrong checksum" + checksum);
System.err.println("Expected checksum" + CHECKSUM);
System.err.println("ERROR: wrong checksum " + checksum);
System.err.println("Expected checksum " + CHECKSUM);
}

KeyStore ks = KeyStore.getInstance("JKS");
Expand Down

1 comment on commit 12d08f0

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.