Repository: groovy
Updated Branches:
  refs/heads/master 7ed10fd56 -> 60ea38bbf


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

Branch: refs/heads/master
Commit: 60ea38bbf19f27a2afe48b0493f4a92c5b37444f
Parents: 7ed10fd
Author: paulk <[email protected]>
Authored: Tue Mar 20 11:33:38 2018 +1000
Committer: paulk <[email protected]>
Committed: Tue Mar 20 11:33: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/60ea38bb/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