From: Hugo van Kemenade Date: Fri, 8 Sep 2023 15:30:28 +0000 (-0600) Subject: gh-109140: Rename duplicated tests in `test_binascii` (#109141) X-Git-Tag: v3.13.0a1~541 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa51182320f3c391195eb7d5bd970867e63bd978;p=thirdparty%2FPython%2Fcpython.git gh-109140: Rename duplicated tests in `test_binascii` (#109141) --- diff --git a/Lib/test/test_binascii.py b/Lib/test/test_binascii.py index eb831b1a06fc..3d3e0746e9bf 100644 --- a/Lib/test/test_binascii.py +++ b/Lib/test/test_binascii.py @@ -233,7 +233,7 @@ class BinASCIITest(unittest.TestCase): binary=hypothesis.strategies.binary(), backtick=hypothesis.strategies.booleans(), ) - def test_hex_roundtrip(self, binary, backtick): + def test_b2a_roundtrip(self, binary, backtick): converted = binascii.b2a_uu(self.type2test(binary), backtick=backtick) restored = binascii.a2b_uu(self.type2test(converted)) self.assertConversion(binary, converted, restored, backtick=backtick)