You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/09/14 00:31:56 UTC

[commons-configuration] branch master updated: Be more quiet on the console during tests.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2872418  Be more quiet on the console during tests.
2872418 is described below

commit 2872418aa3a25ae348e918a01c89b055153d30c0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Sep 13 20:31:53 2019 -0400

    Be more quiet on the console during tests.
---
 .../org/apache/commons/configuration2/TestPropertiesConfiguration.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/configuration2/TestPropertiesConfiguration.java b/src/test/java/org/apache/commons/configuration2/TestPropertiesConfiguration.java
index 5b5e8f5..665c657 100644
--- a/src/test/java/org/apache/commons/configuration2/TestPropertiesConfiguration.java
+++ b/src/test/java/org/apache/commons/configuration2/TestPropertiesConfiguration.java
@@ -775,7 +775,7 @@ public class TestPropertiesConfiguration
         for (final Object key : jup.keySet())
         {
             final String keyString = key.toString();
-            System.out.println(keyString);
+            // System.out.println(keyString);
             assertEquals("Wrong property value for '" + keyString + "'", jup.getProperty(keyString),
                     conf.getProperty(keyString));
         }