This is an automated email from the ASF dual-hosted git repository.
emilles pushed a commit to branch GROOVY-9244
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/GROOVY-9244 by this push:
new eb0ef5d fix typo
eb0ef5d is described below
commit eb0ef5de3890109e2215717351739213ff24617d
Author: Eric Milles <[email protected]>
AuthorDate: Fri Oct 4 11:31:01 2019 -0500
fix typo
---
src/test/groovy/bugs/Groovy9244.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/groovy/bugs/Groovy9244.groovy
b/src/test/groovy/bugs/Groovy9244.groovy
index 3ce3235..b39c462 100644
--- a/src/test/groovy/bugs/Groovy9244.groovy
+++ b/src/test/groovy/bugs/Groovy9244.groovy
@@ -111,7 +111,7 @@ final class Groovy9244 {
}
def impl = new Base((String) null) {}
- assert iompl.which == 'String'
+ assert impl.which == 'String'
'''
}
}