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: [email protected]
For additional commands, e-mail: [email protected]