You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2015/10/12 08:52:16 UTC

incubator-groovy git commit: deactivate test 'logging' which was enabled by mistake

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 5ad839345 -> 410e88125


deactivate test 'logging' which was enabled by mistake


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/410e8812
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/410e8812
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/410e8812

Branch: refs/heads/master
Commit: 410e881254ff29cf68d17cf956144ccddfdd6f7c
Parents: 5ad8393
Author: pascalschumacher <pa...@gmx.net>
Authored: Mon Oct 12 08:52:03 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Mon Oct 12 08:52:03 2015 +0200

----------------------------------------------------------------------
 src/test/org/codehaus/groovy/ast/LineColumnCheckTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/410e8812/src/test/org/codehaus/groovy/ast/LineColumnCheckTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/ast/LineColumnCheckTest.groovy b/src/test/org/codehaus/groovy/ast/LineColumnCheckTest.groovy
index 9f31807..46a9acf 100644
--- a/src/test/org/codehaus/groovy/ast/LineColumnCheckTest.groovy
+++ b/src/test/org/codehaus/groovy/ast/LineColumnCheckTest.groovy
@@ -123,7 +123,7 @@ class LineColumnCheckTest extends ASTTest {
         visitor.visitModuleNode(getAST(source))
         String was = visitor.getASTString()
         //comment out next line to view the output of the visitor
-        println(name + ': ' + was)
+        //println(name + ': ' + was)
         for (String anExpected : expected) {
             assertTrue("'" + anExpected + "' not found in '" + was + "'", was.indexOf(anExpected.trim()) != -1)
         }