@@ -1021,7 +1021,7 @@ public void testReadLines_CharSequence() throws IOException {
1021
1021
CharSequence csq = null ;
1022
1022
try {
1023
1023
final String [] data = {"hello" , "/u1234" , "" , "this is" , "some text" };
1024
- TestUtils .createLineBasedFile (file , data );
1024
+ TestUtils .createLineFileUtf8 (file , data );
1025
1025
csq = new String (Files .readAllBytes (file .toPath ()), StandardCharsets .UTF_8 );
1026
1026
final List <String > lines = IOUtils .readLines (csq );
1027
1027
assertEquals (Arrays .asList (data ), lines );
@@ -1036,7 +1036,7 @@ public void testReadLines_CharSequenceAsStringBuilder() throws IOException {
1036
1036
StringBuilder csq = null ;
1037
1037
try {
1038
1038
final String [] data = {"hello" , "/u1234" , "" , "this is" , "some text" };
1039
- TestUtils .createLineBasedFile (file , data );
1039
+ TestUtils .createLineFileUtf8 (file , data );
1040
1040
csq = new StringBuilder (new String (Files .readAllBytes (file .toPath ()), StandardCharsets .UTF_8 ));
1041
1041
final List <String > lines = IOUtils .readLines (csq );
1042
1042
assertEquals (Arrays .asList (data ), lines );
@@ -1051,7 +1051,7 @@ public void testReadLines_InputStream() throws Exception {
1051
1051
InputStream in = null ;
1052
1052
try {
1053
1053
final String [] data = {"hello" , "world" , "" , "this is" , "some text" };
1054
- TestUtils .createLineBasedFile (file , data );
1054
+ TestUtils .createLineFileUtf8 (file , data );
1055
1055
1056
1056
in = Files .newInputStream (file .toPath ());
1057
1057
final List <String > lines = IOUtils .readLines (in );
@@ -1069,7 +1069,7 @@ public void testReadLines_InputStream_String() throws Exception {
1069
1069
InputStream in = null ;
1070
1070
try {
1071
1071
final String [] data = {"hello" , "/u1234" , "" , "this is" , "some text" };
1072
- TestUtils .createLineBasedFile (file , data );
1072
+ TestUtils .createLineFileUtf8 (file , data );
1073
1073
1074
1074
in = Files .newInputStream (file .toPath ());
1075
1075
final List <String > lines = IOUtils .readLines (in , UTF_8 );
@@ -1087,7 +1087,7 @@ public void testReadLines_Reader() throws Exception {
1087
1087
Reader in = null ;
1088
1088
try {
1089
1089
final String [] data = {"hello" , "/u1234" , "" , "this is" , "some text" };
1090
- TestUtils .createLineBasedFile (file , data );
1090
+ TestUtils .createLineFileUtf8 (file , data );
1091
1091
in = new InputStreamReader (Files .newInputStream (file .toPath ()));
1092
1092
final List <String > lines = IOUtils .readLines (in );
1093
1093
assertEquals (Arrays .asList (data ), lines );
0 commit comments