Skip to content

Commit 1ded98e

Browse files
committed
Improve test output
Signed-off-by: Spencer Wilson <[email protected]>
1 parent be4863f commit 1ded98e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/org/openquantumsafe/KEMTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ public void testAllKEMs(String kem_name) {
6565
public void testKEMsWithDerand(String kem_name) {
6666
StringBuilder sb = new StringBuilder();
6767
sb.append(kem_name);
68-
sb.append(String.format("%1$" + (40 - kem_name.length()) + "s", ""));
68+
sb.append(" (derand)");
69+
sb.append(String.format("%1$" + (40 - kem_name.length() - 9) + "s", ""));
6970

7071
// Create client and server
7172
KeyEncapsulation client = new KeyEncapsulation(kem_name);

0 commit comments

Comments
 (0)