You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/04/02 09:52:44 UTC

[2/2] git commit: WICKET-4482 Regression in OnChangeAjaxBehavior

WICKET-4482 Regression in OnChangeAjaxBehavior

Update the test to use the new event name.


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

Branch: refs/heads/master
Commit: d382f4258411c514bccd2c4c63b8092abd9d517c
Parents: 5bff868
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Apr 2 09:41:22 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Apr 2 09:41:22 2012 +0200

----------------------------------------------------------------------
 .../wicket/ajax/form/OnChangeAjaxBehaviorTest.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/d382f425/wicket-core/src/test/java/org/apache/wicket/ajax/form/OnChangeAjaxBehaviorTest.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/java/org/apache/wicket/ajax/form/OnChangeAjaxBehaviorTest.java b/wicket-core/src/test/java/org/apache/wicket/ajax/form/OnChangeAjaxBehaviorTest.java
index 68ea74d..9f4cc4b 100644
--- a/wicket-core/src/test/java/org/apache/wicket/ajax/form/OnChangeAjaxBehaviorTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/ajax/form/OnChangeAjaxBehaviorTest.java
@@ -52,7 +52,7 @@ public class OnChangeAjaxBehaviorTest extends WicketTestCase
 		tester.assertLabel("message",
 			"If you see this message wicket is properly configured and running");
 
-		tester.executeAjaxEvent("form:select", "inputchange");
+		tester.executeAjaxEvent("form:select", "inputchange change");
 
 		// assert rendered page class
 		tester.assertRenderedPage(ThirdPage.class);