diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-08-05 05:59:13 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-08-05 05:59:13 (GMT) |
commit | 8db4403a768b711bbda1857ab4f38ed4be726e4b (patch) | |
tree | a6e948a8c1c9454c89cf0c13ec3e77f9774db3e7 /Lib/test/test_normalization.py | |
parent | cebcc61d4decdaa3c938461451ab62c1c3010ce1 (diff) | |
download | cpython-8db4403a768b711bbda1857ab4f38ed4be726e4b.zip cpython-8db4403a768b711bbda1857ab4f38ed4be726e4b.tar.gz cpython-8db4403a768b711bbda1857ab4f38ed4be726e4b.tar.bz2 |
Correct URL of normalization file. Fixes #781065. Will backport to 2.3.
Diffstat (limited to 'Lib/test/test_normalization.py')
-rw-r--r-- | Lib/test/test_normalization.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py index f8d2786..046dca6 100644 --- a/Lib/test/test_normalization.py +++ b/Lib/test/test_normalization.py @@ -3,7 +3,7 @@ import sys import os from unicodedata import normalize -TESTDATAFILE = "NormalizationTest" + os.extsep + "txt" +TESTDATAFILE = "NormalizationTest-3.2.0" + os.extsep + "txt" # This search allows using a build directory just inside the source # directory, and saving just one copy of the test data in the source @@ -42,7 +42,7 @@ def unistr(data): def test_main(): if skip_expected: raise TestSkipped(TESTDATAFILE + " not found, download from " + - "http://www.unicode.org/Public/UNIDATA/" + TESTDATAFILE) + "http://www.unicode.org/Public/3.2-Update/" + TESTDATAFILE) part1_data = {} for line in open(TESTDATAFILE): |