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:30 UTC

[10/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/b28460b0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/b28460b0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/b28460b0

Branch: refs/heads/master
Commit: b28460b00f371082ae132f6f0c3b23589a8dd839
Parents: 01805ce
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:05 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/b28460b0/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()