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-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 654ab1b  Comment out writing to the console in tests.
654ab1b is described below

commit 654ab1bdcaf6c8e7bde7590a08bb9b6f6905a499
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jul 4 13:44:44 2020 -0400

    Comment out writing to the console in tests.
---
 .../org/apache/commons/text/lookup/InterpolatorStringLookupTest.java    | 2 +-
 src/test/java/org/apache/commons/text/lookup/UrlStringLookupTest.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/text/lookup/InterpolatorStringLookupTest.java
 
b/src/test/java/org/apache/commons/text/lookup/InterpolatorStringLookupTest.java
index 19bb50f..78f97e1 100644
--- 
a/src/test/java/org/apache/commons/text/lookup/InterpolatorStringLookupTest.java
+++ 
b/src/test/java/org/apache/commons/text/lookup/InterpolatorStringLookupTest.java
@@ -58,7 +58,7 @@ public class InterpolatorStringLookupTest {
         final String value = lookup.lookup(key);
         assertNotNull(value);
         assertFalse(value.isEmpty());
-        System.out.println(key + " = " + value);
+        // System.out.println(key + " = " + value);
     }
 
     @Test
diff --git 
a/src/test/java/org/apache/commons/text/lookup/UrlStringLookupTest.java 
b/src/test/java/org/apache/commons/text/lookup/UrlStringLookupTest.java
index cf7444c..095fea4 100644
--- a/src/test/java/org/apache/commons/text/lookup/UrlStringLookupTest.java
+++ b/src/test/java/org/apache/commons/text/lookup/UrlStringLookupTest.java
@@ -51,7 +51,7 @@ public class UrlStringLookupTest {
     public void testFileScheme() throws Exception {
         final Path path = Paths.get("src/test/resources/document.properties");
         final URI uri = path.toUri();
-        System.out.println(uri);
+        // System.out.println(uri);
         final byte[] expectedBytes = Files.readAllBytes(path);
         final String expectedString = new String(expectedBytes, 
StandardCharsets.UTF_8);
         Assertions.assertEquals(expectedString, 
UrlStringLookup.INSTANCE.lookup("UTF-8:" + uri.toString()));

Reply via email to