diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-16 23:18:33 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-16 23:18:33 (GMT) |
| commit | 72bb99d34351a7636c9ff13e563c9e97e0f1fdac (patch) | |
| tree | 81e3aa8c15cd85545fab8f98a551914a57c6a600 | |
| parent | 73e3e76be5cb5a02f24be06abe994550da215bd7 (diff) | |
| download | cpython-72bb99d34351a7636c9ff13e563c9e97e0f1fdac.zip cpython-72bb99d34351a7636c9ff13e563c9e97e0f1fdac.tar.gz cpython-72bb99d34351a7636c9ff13e563c9e97e0f1fdac.tar.bz2 | |
Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't exist anymore
| -rw-r--r-- | Lib/test/test_linecache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_linecache.py b/Lib/test/test_linecache.py index 407bebc..b5f80a4 100644 --- a/Lib/test/test_linecache.py +++ b/Lib/test/test_linecache.py @@ -9,7 +9,7 @@ from test import test_support as support FILENAME = linecache.__file__ INVALID_NAME = '!@$)(!@#_1' EMPTY = '' -TESTS = 'cjkencodings_test inspect_fodder inspect_fodder2 mapping_tests' +TESTS = 'inspect_fodder inspect_fodder2 mapping_tests' TESTS = TESTS.split() TEST_PATH = os.path.dirname(support.__file__) MODULES = "linecache abc".split() |
