aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java')
-rw-r--r--core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java b/core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java
index 89c94ea..53fb54d 100644
--- a/core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java
+++ b/core/src/test/java/com/google/googlejavaformat/java/StringWrapperIntegrationTest.java
@@ -395,8 +395,8 @@ public class StringWrapperIntegrationTest {
@Test
public void testCR() throws Exception {
- assertThat(StringWrapper.wrap(40, formatter.formatSource(input.replace("\n", "\r")), formatter))
- .isEqualTo(output.replace("\n", "\r"));
+ assertThat(StringWrapper.wrap(40, formatter.formatSource(input.replace('\n', '\r')), formatter))
+ .isEqualTo(output.replace('\n', '\r'));
}
@Test