You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by cc...@apache.org on 2015/10/07 21:26:26 UTC

[06/37] incubator-groovy git commit: fix wrong macro test case superclass

fix wrong macro test case superclass


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

Branch: refs/heads/master
Commit: 0efac35d23465158f4450051409063a10320405e
Parents: ff1d4a0
Author: Sergey Egorov <bs...@gmail.com>
Authored: Thu Jul 3 22:21:58 2014 +0300
Committer: Sergei Egorov <bs...@gmail.com>
Committed: Mon Sep 28 14:32:04 2015 +0300

----------------------------------------------------------------------
 .../groovy-macro/src/test/groovy/groovy/SimpleMacroTest.groovy     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/0efac35d/subprojects/groovy-macro/src/test/groovy/groovy/SimpleMacroTest.groovy
----------------------------------------------------------------------
diff --git a/subprojects/groovy-macro/src/test/groovy/groovy/SimpleMacroTest.groovy b/subprojects/groovy-macro/src/test/groovy/groovy/SimpleMacroTest.groovy
index 64bb1bf..ad9b15b 100644
--- a/subprojects/groovy-macro/src/test/groovy/groovy/SimpleMacroTest.groovy
+++ b/subprojects/groovy-macro/src/test/groovy/groovy/SimpleMacroTest.groovy
@@ -29,7 +29,7 @@ import static org.codehaus.groovy.ast.expr.VariableExpression.*;
  * @author Sergei Egorov <bs...@gmail.com>
  */
 @CompileStatic
-class SimpleMacroTest extends GroovyShellTestCase {
+class SimpleMacroTest extends GroovyTestCase {
     
     static final String TO_LOWER_CASE_METHOD_NAME = macro { "".toLowerCase() }.getMethodAsString()