Repository: groovy Updated Branches: refs/heads/GROOVY_2_4_X 82c0cf629 -> 03cf5414c
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/03cf5414 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/03cf5414 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/03cf5414 Branch: refs/heads/GROOVY_2_4_X Commit: 03cf5414c9998cfb8f5249d02726be265e7928a4 Parents: 82c0cf6 Author: paulk <[email protected]> Authored: Thu Mar 22 03:32:17 2018 +1000 Committer: paulk <[email protected]> Committed: Thu Mar 22 03:32:17 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/03cf5414/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> * @Test * public void XXX() { - * if (GroovyTestCase.notYetImplemented(this)) return; + * if (GroovyAssert.notYetImplemented(this)) return; * ... the real (now failing) unit test * } * </pre>
