You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2014/10/21 01:19:30 UTC

svn commit: r1633255 - /poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestProper.java

Author: nick
Date: Mon Oct 20 23:19:30 2014
New Revision: 1633255

URL: http://svn.apache.org/r1633255
Log:
Escape non-ASCII characters in the unit test, so it builds properly everywhere

Modified:
    poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestProper.java

Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestProper.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestProper.java?rev=1633255&r1=1633254&r2=1633255&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestProper.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestProper.java Mon Oct 20 23:19:30 2014
@@ -57,10 +57,10 @@ public final class TestProper extends Te
         confirm("PROPER(\"hi there\")", "Hi There");
         confirm("PROPER(\"what's up\")", "What'S Up");
         confirm("PROPER(\"I DON'T TH!NK SO!\")", "I Don'T Th!Nk So!");
-        confirm("PROPER(\"drÜbö'ä éloş|ëè \")", "Drübö'Ä Éloş|Ëè ");
+        confirm("PROPER(\"dr\u00dcb\u00f6'\u00e4 \u00e9lo\u015f|\u00eb\u00e8 \")", "Dr\u00fcb\u00f6'\u00c4 \u00c9lo\u015f|\u00cb\u00e8 ");
         confirm("PROPER(\"hi123 the123re\")", "Hi123 The123Re");
         confirm("PROPER(\"-\")", "-");
-        confirm("PROPER(\"!§$\")", "!§$");
+        confirm("PROPER(\"!\u00a7$\")", "!\u00a7$");
         confirm("PROPER(\"/&%\")", "/&%");
         
         // also test longer string



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org