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/12/28 10:36:31 UTC

svn commit: r1053288 - /wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/examples/encodings/EncodingTest.java

Author: mgrigorov
Date: Tue Dec 28 09:36:31 2010
New Revision: 1053288

URL: http://svn.apache.org/viewvc?rev=1053288&view=rev
Log:
WICKET-2264 Ajax xml response is not validated correct

Update test expectation - the response is xml encoded if it contains characters out of 32-159 range (ASCII).

Modified:
    wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/examples/encodings/EncodingTest.java

Modified: wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/examples/encodings/EncodingTest.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/examples/encodings/EncodingTest.java?rev=1053288&r1=1053287&r2=1053288&view=diff
==============================================================================
--- wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/examples/encodings/EncodingTest.java (original)
+++ wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/examples/encodings/EncodingTest.java Tue Dec 28 09:36:31 2010
@@ -35,6 +35,6 @@ public class EncodingTest extends TestCa
 		WicketTester tester = new WicketTester();
 		tester.startPage(Home.class);
 		tester.assertContains("Wicket Examples - encodings");
-		tester.assertContains("Hello world! Test: ���");
+		tester.assertContains("Hello world! Test: ���");
 	}
 }