summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorjacksonriley <52106215+jacksonriley@users.noreply.github.com>2019-11-22 12:51:58 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-11-22 12:51:58 (GMT)
commit138e7bbb0a5ed44bdd54605e8c58c8f3d3865321 (patch)
tree2dfe468a8fa0818e5a2f698d0cb2d725482c829a /Lib/test
parent3d4833488a173c16446c3f94f58f05e2d13c5dee (diff)
downloadcpython-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.py2
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"