You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by th...@apache.org on 2014/06/27 15:04:26 UTC

git commit: TAP5-1493: as I cannot reproduce the issue in my machine, even using Java 6, I'm committing a little change to know how it'll turn out in tests.

Repository: tapestry-5
Updated Branches:
  refs/heads/master ac05d51c7 -> 5db1364e9


TAP5-1493: as I cannot reproduce the issue in my machine, even using
Java 6, I'm committing a little change to know how it'll turn out in
tests.

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

Branch: refs/heads/master
Commit: 5db1364e9cf2e5087ee00508fe7382ac4ddb70a8
Parents: ac05d51
Author: Thiago H. de Paula Figueiredo <th...@apache.org>
Authored: Fri Jun 27 10:03:10 2014 -0300
Committer: Thiago H. de Paula Figueiredo <th...@apache.org>
Committed: Fri Jun 27 10:03:10 2014 -0300

----------------------------------------------------------------------
 .../tapestry5/internal/services/PropertyConduitSourceImplTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/5db1364e/tapestry-core/src/test/java/org/apache/tapestry5/internal/services/PropertyConduitSourceImplTest.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/java/org/apache/tapestry5/internal/services/PropertyConduitSourceImplTest.java b/tapestry-core/src/test/java/org/apache/tapestry5/internal/services/PropertyConduitSourceImplTest.java
index 05067c7..af25c62 100644
--- a/tapestry-core/src/test/java/org/apache/tapestry5/internal/services/PropertyConduitSourceImplTest.java
+++ b/tapestry-core/src/test/java/org/apache/tapestry5/internal/services/PropertyConduitSourceImplTest.java
@@ -883,7 +883,6 @@ public class PropertyConduitSourceImplTest extends InternalBaseTestCase
     public void covariant_property_return_type() {
 
         // example from Howard
-        assertConduitPropertyType(AbstractFoo.class, "bar", AbstractBar.class);
         try {
         	assertConduitPropertyType(Foo.class, "bar", Bar.class);
         } catch (AssertionError e) {
@@ -895,6 +894,7 @@ public class PropertyConduitSourceImplTest extends InternalBaseTestCase
         	}
         	fail(String.format("%s (possible candidates %s)", e.getMessage(), matches)); 
         }
+        assertConduitPropertyType(AbstractFoo.class, "bar", AbstractBar.class);
         
         // example from Robert
         assertConduitPropertyType(RobertMyClass.class, "foo.robertBarValue", int.class);