mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22502 Fix TestPersonNames failure on Windows
This commit is contained in:
parent
c4a596e18e
commit
2f7090256a
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
package com.ibm.icu.dev.test.format;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.*;
|
||||
|
||||
import com.ibm.icu.dev.test.TestFmwk;
|
||||
|
@ -69,7 +70,7 @@ public class PersonNameConsistencyTest extends TestFmwk {
|
|||
@Parameters(method = "readTestCases")
|
||||
public void TestPersonNames(String filename) throws IOException {
|
||||
String knownIssue = KNOWN_ISSUES.get(filename);
|
||||
LineNumberReader in = new LineNumberReader(new InputStreamReader(TestUtil.class.getResourceAsStream(DATA_PATH + filename)));
|
||||
LineNumberReader in = new LineNumberReader(new InputStreamReader(TestUtil.class.getResourceAsStream(DATA_PATH + filename), StandardCharsets.UTF_8));
|
||||
String line = null;
|
||||
PersonNameTester tester = new PersonNameTester(filename);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue