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 2010/11/28 10:27:55 UTC

svn commit: r1039852 - /wicket/trunk/wicket/src/test/java/org/apache/wicket/BehaviorRequestTest.java

Author: mgrigorov
Date: Sun Nov 28 09:27:54 2010
New Revision: 1039852

URL: http://svn.apache.org/viewvc?rev=1039852&view=rev
Log:
Properly initialize the test

Modified:
    wicket/trunk/wicket/src/test/java/org/apache/wicket/BehaviorRequestTest.java

Modified: wicket/trunk/wicket/src/test/java/org/apache/wicket/BehaviorRequestTest.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/test/java/org/apache/wicket/BehaviorRequestTest.java?rev=1039852&r1=1039851&r2=1039852&view=diff
==============================================================================
--- wicket/trunk/wicket/src/test/java/org/apache/wicket/BehaviorRequestTest.java (original)
+++ wicket/trunk/wicket/src/test/java/org/apache/wicket/BehaviorRequestTest.java Sun Nov 28 09:27:54 2010
@@ -40,6 +40,7 @@ public class BehaviorRequestTest extends
 	@Override
 	protected void setUp() throws Exception
 	{
+		super.setUp();
 		page = new TestPage();
 		tester.startPage(page);
 	}