Skip to content

Commit 6c87078

Browse files
committed
Try a simpler character to please build system
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1687823 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3dac3a6 commit 6c87078

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/io/output/FileWriterWithEncodingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ private void writeTestPayload(FileWriter fw1, FileWriterWithEncoding fw2) throws
170170

171171
fw1.write(textContent);
172172
fw2.write(textContent);
173-
fw1.write(42);
174-
fw2.write(42);
173+
fw1.write(65);
174+
fw2.write(65);
175175
fw1.write(anotherTestContent);
176176
fw2.write(anotherTestContent);
177177
fw1.write(anotherTestContent, 1, 2);

0 commit comments

Comments
 (0)