summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_buffer.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-06-28 14:43:41 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:43:41 (GMT)
commitc283a0cff5603540f06d9017e484b3602cc62e7c (patch)
tree0e9bc5ef2cbfa0e3a598a28ed24dc7121e7b31e5 /Lib/test/test_buffer.py
parent18f51f91e24402a24a0daa53fcbc81a5a2e9af94 (diff)
downloadcpython-c283a0cff5603540f06d9017e484b3602cc62e7c.zip
cpython-c283a0cff5603540f06d9017e484b3602cc62e7c.tar.gz
cpython-c283a0cff5603540f06d9017e484b3602cc62e7c.tar.bz2
gh-106197: Deduplicate tests in `test_buffer` (#106198)
Diffstat (limited to 'Lib/test/test_buffer.py')
-rw-r--r--Lib/test/test_buffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_buffer.py b/Lib/test/test_buffer.py
index 8d6902e..b679d2e 100644
--- a/Lib/test/test_buffer.py
+++ b/Lib/test/test_buffer.py
@@ -4722,7 +4722,7 @@ class TestPythonBufferProtocol(unittest.TestCase):
with self.assertRaises(ValueError):
c.buffer.tobytes()
- def test_multiple_inheritance_buffer_last(self):
+ def test_multiple_inheritance_buffer_last_raising(self):
class A:
def __buffer__(self, flags):
raise RuntimeError("should not be called")