diff options
author | Ned Deily <nad@acm.org> | 2011-07-19 23:15:27 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-07-19 23:15:27 (GMT) |
commit | 2ea6fccf64596f84562b0a57a8d63847286bdf4c (patch) | |
tree | c8951e316d506a6a3cfd5a5cb990b7594acc114d /Lib/test/test_tokenize.py | |
parent | c57ed91e0c1e5476076268e62a85b613ef88d21b (diff) | |
download | cpython-2ea6fccf64596f84562b0a57a8d63847286bdf4c.zip cpython-2ea6fccf64596f84562b0a57a8d63847286bdf4c.tar.gz cpython-2ea6fccf64596f84562b0a57a8d63847286bdf4c.tar.bz2 |
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 11e6fb4..d30d5ee 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): |