You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ib...@apache.org on 2020/06/05 14:58:19 UTC

[beam] branch master updated: [BEAM-10194] Call println() in Katas test failures.

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

ibzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 7e8a9cd  [BEAM-10194] Call println() in Katas test failures.
     new b1aa4d1  Merge pull request #11921 from ibzib/BEAM-10194
7e8a9cd is described below

commit 7e8a9cdc8d17176ddc8abc701728941189cee6ba
Author: Kyle Weaver <kc...@google.com>
AuthorDate: Thu Jun 4 12:39:26 2020 -0400

    [BEAM-10194] Call println() in Katas test failures.
---
 learning/katas/java/build.gradle   | 2 +-
 learning/katas/kotlin/build.gradle | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/learning/katas/java/build.gradle b/learning/katas/java/build.gradle
index 1bb4597..a05f625 100644
--- a/learning/katas/java/build.gradle
+++ b/learning/katas/java/build.gradle
@@ -90,7 +90,7 @@ subprojects {
           println "#educational_plugin" + line
         }
         // we need this to separate output of different tests
-        println
+        println()
       }
     }
   }
diff --git a/learning/katas/kotlin/build.gradle b/learning/katas/kotlin/build.gradle
index cb49f0d..ca4324d 100644
--- a/learning/katas/kotlin/build.gradle
+++ b/learning/katas/kotlin/build.gradle
@@ -106,7 +106,7 @@ subprojects {
           println "#educational_plugin" + line
         }
         // we need this to separate output of different tests
-        println
+        println()
       }
     }
   }