You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2015/03/04 15:59:39 UTC

tapestry-5 git commit: Use a different method so the test succeeds in Java 8

Repository: tapestry-5
Updated Branches:
  refs/heads/master 3806a183c -> 52b687c56


Use a different method so the test succeeds in Java 8


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/52b687c5
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/52b687c5
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/52b687c5

Branch: refs/heads/master
Commit: 52b687c564ba691c79213d4f8e310c3be76f43df
Parents: 3806a18
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Wed Mar 4 15:58:58 2015 +0100
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Wed Mar 4 15:58:58 2015 +0100

----------------------------------------------------------------------
 tapestry-ioc/src/test/groovy/ioc/specs/MethodSignatureSpec.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/52b687c5/tapestry-ioc/src/test/groovy/ioc/specs/MethodSignatureSpec.groovy
----------------------------------------------------------------------
diff --git a/tapestry-ioc/src/test/groovy/ioc/specs/MethodSignatureSpec.groovy b/tapestry-ioc/src/test/groovy/ioc/specs/MethodSignatureSpec.groovy
index 5745770..e24b93e 100644
--- a/tapestry-ioc/src/test/groovy/ioc/specs/MethodSignatureSpec.groovy
+++ b/tapestry-ioc/src/test/groovy/ioc/specs/MethodSignatureSpec.groovy
@@ -35,7 +35,7 @@ class MethodSignatureSpec extends Specification {
     where:
 
     firstClass  | secondClass       | methodName
-    Object      | Boolean           | "hashCode"
+    Object      | Boolean           | "notify"
     String      | StringBuilder     | "charAt"
     ObjectInput | ObjectInputStream | "close"
   }