This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git

commit 22a9909cae57559c088ec4daae224e84d0259688
Author: aherbert <aherb...@apache.org>
AuthorDate: Fri Oct 11 14:14:53 2019 +0100

    Fix error in results command APT output format.
---
 .../java/org/apache/commons/rng/examples/stress/ResultsCommand.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-rng-examples/examples-stress/src/main/java/org/apache/commons/rng/examples/stress/ResultsCommand.java
 
b/commons-rng-examples/examples-stress/src/main/java/org/apache/commons/rng/examples/stress/ResultsCommand.java
index 03ee8d0..3caf82b 100644
--- 
a/commons-rng-examples/examples-stress/src/main/java/org/apache/commons/rng/examples/stress/ResultsCommand.java
+++ 
b/commons-rng-examples/examples-stress/src/main/java/org/apache/commons/rng/examples/stress/ResultsCommand.java
@@ -858,8 +858,8 @@ class ResultsCommand implements Callable<Void> {
                         // Add systematic failures in brackets
                         if (showFailedTests) {
                             text += " (" + 
getSystematicFailures(testResults).size() + ")";
-                            writeAPTColumn(output, text);
                         }
+                        writeAPTColumn(output, text);
                     }
                     output.newLine();
                     output.write(separator);

Reply via email to