diff options
author | jacksonriley <52106215+jacksonriley@users.noreply.github.com> | 2019-11-22 12:51:58 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-11-22 12:51:58 (GMT) |
commit | 138e7bbb0a5ed44bdd54605e8c58c8f3d3865321 (patch) | |
tree | 2dfe468a8fa0818e5a2f698d0cb2d725482c829a /Lib/test | |
parent | 3d4833488a173c16446c3f94f58f05e2d13c5dee (diff) | |
download | cpython-138e7bbb0a5ed44bdd54605e8c58c8f3d3865321.zip cpython-138e7bbb0a5ed44bdd54605e8c58c8f3d3865321.tar.gz cpython-138e7bbb0a5ed44bdd54605e8c58c8f3d3865321.tar.bz2 |
bpo-38866: Remove asyncore from test_pyclbr.py (GH-17316)
Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_pyclbr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 4385271..869799c 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -247,7 +247,7 @@ class ReadmoduleTests(TestCase): # not a package. # # Issue #14798. - self.assertRaises(ImportError, pyclbr.readmodule_ex, 'asyncore.foo') + self.assertRaises(ImportError, pyclbr.readmodule_ex, 'asyncio.foo') def test_module_has_no_spec(self): module_name = "doesnotexist" |