diff options
author | Ned Deily <nad@acm.org> | 2011-07-19 16:15:27 -0700 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-07-19 16:15:27 -0700 |
commit | 963247cf32249d5fd1174216bbed555abcbef958 (patch) | |
tree | 9fa2d16a4bf64f68a5cfd355a7562a2fb66b0919 /Lib/test/test_tokenize.py | |
parent | 35819cd5929773f8705a7368c21c64b92b35319e (diff) | |
download | cpython-963247cf32249d5fd1174216bbed555abcbef958.tar.gz |
Issue #12587: Correct faulty test file and reference in test_tokenize.
(Patch by Robert Xiao)
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 11e6fb4596..d30d5eed09 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -649,7 +649,7 @@ class TestTokenizerAdheresToPep0263(TestCase): return roundtrip(open(path, 'rb')) def test_utf8_coding_cookie_and_no_utf8_bom(self): - f = 'tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt' + f = 'tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt' self.assertTrue(self._testFile(f)) def test_latin1_coding_cookie_and_utf8_bom(self): |