Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_5_X db665ff9b -> aa635f5d7


fix cut-n-paste typo in javadoc


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

Branch: refs/heads/GROOVY_2_5_X
Commit: aa635f5d7dcbda2ff80fe78671654608ac1078a9
Parents: db665ff
Author: paulk <[email protected]>
Authored: Tue Mar 20 11:33:38 2018 +1000
Committer: paulk <[email protected]>
Committed: Thu Mar 22 03:29:38 2018 +1000

----------------------------------------------------------------------
 .../groovy-test/src/main/java/groovy/test/GroovyAssert.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/aa635f5d/subprojects/groovy-test/src/main/java/groovy/test/GroovyAssert.java
----------------------------------------------------------------------
diff --git 
a/subprojects/groovy-test/src/main/java/groovy/test/GroovyAssert.java 
b/subprojects/groovy-test/src/main/java/groovy/test/GroovyAssert.java
index 3c57a19..3b51b3c 100644
--- a/subprojects/groovy-test/src/main/java/groovy/test/GroovyAssert.java
+++ b/subprojects/groovy-test/src/main/java/groovy/test/GroovyAssert.java
@@ -292,7 +292,7 @@ public class GroovyAssert extends org.junit.Assert {
      *
      * <pre>
      * public void testXXX() {
-     *   if (GroovyTestCase.notYetImplemented(this)) return;
+     *   if (GroovyAssert.notYetImplemented(this)) return;
      *   ... the real (now failing) unit test
      * }
      * </pre>
@@ -302,7 +302,7 @@ public class GroovyAssert extends org.junit.Assert {
      * <pre>
      * &#64;Test
      * public void XXX() {
-     *   if (GroovyTestCase.notYetImplemented(this)) return;
+     *   if (GroovyAssert.notYetImplemented(this)) return;
      *   ... the real (now failing) unit test
      * }
      * </pre>

Reply via email to