summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sundry.py
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2020-11-25 13:17:30 (GMT)
committerGitHub <noreply@github.com>2020-11-25 13:17:30 (GMT)
commitbe319c0c108e308fb7ed6ec9522e969fdffd1253 (patch)
tree374255533809ed68cbd908a433c2a8550aa15c78 /Lib/test/test_sundry.py
parentb9127dd6eedd693cfd716a4444648864e2e00186 (diff)
downloadcpython-be319c0c108e308fb7ed6ec9522e969fdffd1253.zip
cpython-be319c0c108e308fb7ed6ec9522e969fdffd1253.tar.gz
cpython-be319c0c108e308fb7ed6ec9522e969fdffd1253.tar.bz2
bpo-42299: Remove formatter module (GH-23476)
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r--Lib/test/test_sundry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py
index 04e572c..aab074b 100644
--- a/Lib/test/test_sundry.py
+++ b/Lib/test/test_sundry.py
@@ -9,7 +9,7 @@ import unittest
class TestUntestedModules(unittest.TestCase):
def test_untested_modules_can_be_imported(self):
- untested = ('encodings', 'formatter')
+ untested = ('encodings',)
with warnings_helper.check_warnings(quiet=True):
for name in untested:
try: