mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-7853 Fix Windows-only spoof check test failure.
X-SVN-Rev: 28375
This commit is contained in:
parent
2f72159ffb
commit
1360486f9e
1 changed files with 3 additions and 3 deletions
|
@ -119,9 +119,9 @@ public class SpoofCheckerTest extends TestFmwk {
|
|||
SpoofChecker rsc;
|
||||
|
||||
try {
|
||||
fileName = "unicode" + File.separator + "confusables.txt";
|
||||
fileName = "unicode/confusables.txt";
|
||||
confusables = TestUtil.getDataReader(fileName, "UTF-8");
|
||||
fileName = "unicode" + File.separator + "confusablesWholeScript.txt";
|
||||
fileName = "unicode/confusablesWholeScript.txt";
|
||||
confusablesWholeScript = TestUtil.getDataReader(fileName, "UTF-8");
|
||||
|
||||
rsc = builder.setData(confusables, confusablesWholeScript).build();
|
||||
|
@ -503,7 +503,7 @@ public class SpoofCheckerTest extends TestFmwk {
|
|||
public void testConfData() {
|
||||
try {
|
||||
// Read in the confusables.txt file. (Distributed by Unicode.org)
|
||||
String fileName = "unicode" + File.separator + "confusables.txt";
|
||||
String fileName = "unicode/confusables.txt";
|
||||
BufferedReader confusablesRdr = TestUtil.getDataReader(fileName, "UTF-8");
|
||||
|
||||
// Create a default spoof checker to use in this test.
|
||||
|
|
Loading…
Add table
Reference in a new issue