This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
     new e72bec3  Checkstyle line length.
e72bec3 is described below

commit e72bec3c84c582c4abbe02e1b81eec3c1373d365
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Dec 19 09:25:09 2019 -0500

    Checkstyle line length.
---
 src/test/java/org/apache/commons/text/CaseUtilsTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/text/CaseUtilsTest.java 
b/src/test/java/org/apache/commons/text/CaseUtilsTest.java
index f990b36..e882d6e 100644
--- a/src/test/java/org/apache/commons/text/CaseUtilsTest.java
+++ b/src/test/java/org/apache/commons/text/CaseUtilsTest.java
@@ -72,7 +72,7 @@ public class CaseUtilsTest {
         assertThat(CaseUtils.toCamelCase("tocamelcase", 
false)).isEqualTo("tocamelcase");
 
         assertThat(CaseUtils.toCamelCase("\uD800\uDF00 \uD800\uDF02", 
true)).isEqualTo("\uD800\uDF00\uD800\uDF02");
-        
assertThat(CaseUtils.toCamelCase("\uD800\uDF00\uD800\uDF01\uD800\uDF14\uD800\uDF02\uD800\uDF03",
 true, '\uD800', '\uDF14'))
-            .isEqualTo("\uD800\uDF00\uD800\uDF01\uD800\uDF02\uD800\uDF03");
+        
assertThat(CaseUtils.toCamelCase("\uD800\uDF00\uD800\uDF01\uD800\uDF14\uD800\uDF02\uD800\uDF03",
 true, '\uD800',
+            
'\uDF14')).isEqualTo("\uD800\uDF00\uD800\uDF01\uD800\uDF02\uD800\uDF03");
     }
 }

Reply via email to