summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-08 02:30:38 (GMT)
committerGitHub <noreply@github.com>2022-11-08 02:30:38 (GMT)
commite7781fd695c0ee44904f717eb0511cbf00b22090 (patch)
tree81948453953bf75b1e33f314af7a49b3e2305f53 /Lib
parenta5d3e1dd04bdf12b6b16eca910b7446270d67c0e (diff)
downloadcpython-e7781fd695c0ee44904f717eb0511cbf00b22090.zip
cpython-e7781fd695c0ee44904f717eb0511cbf00b22090.tar.gz
cpython-e7781fd695c0ee44904f717eb0511cbf00b22090.tar.bz2
gh-99124: use concrete exception types in `test_builtin` (GH-99125)
(cherry picked from commit c32bc1bffd9d63ede0d0505abab983247a3ad0c6) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_builtin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py
index 4b0b15f..aabf0ab 100644
--- a/Lib/test/test_builtin.py
+++ b/Lib/test/test_builtin.py
@@ -159,7 +159,7 @@ class BuiltinTest(unittest.TestCase):
__import__('string')
__import__(name='sys')
__import__(name='time', level=0)
- self.assertRaises(ImportError, __import__, 'spamspam')
+ self.assertRaises(ModuleNotFoundError, __import__, 'spamspam')
self.assertRaises(TypeError, __import__, 1, 2, 3, 4)
self.assertRaises(ValueError, __import__, '')
self.assertRaises(TypeError, __import__, 'sys', name='sys')
@@ -2248,7 +2248,7 @@ class TestType(unittest.TestCase):
self.assertEqual(A.__module__, __name__)
with self.assertRaises(ValueError):
type('A\x00B', (), {})
- with self.assertRaises(ValueError):
+ with self.assertRaises(UnicodeEncodeError):
type('A\udcdcB', (), {})
with self.assertRaises(TypeError):
type(b'A', (), {})
@@ -2265,7 +2265,7 @@ class TestType(unittest.TestCase):
with self.assertRaises(ValueError):
A.__name__ = 'A\x00B'
self.assertEqual(A.__name__, 'C')
- with self.assertRaises(ValueError):
+ with self.assertRaises(UnicodeEncodeError):
A.__name__ = 'A\udcdcB'
self.assertEqual(A.__name__, 'C')
with self.assertRaises(TypeError):