summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2023-09-08 15:30:28 (GMT)
committerGitHub <noreply@github.com>2023-09-08 15:30:28 (GMT)
commitaa51182320f3c391195eb7d5bd970867e63bd978 (patch)
treee5bafef8708f832e1006cfd025bb5268f55a2f40 /Lib/test
parentf63d37877ad166041489a968233b57540f8456e8 (diff)
downloadcpython-aa51182320f3c391195eb7d5bd970867e63bd978.zip
cpython-aa51182320f3c391195eb7d5bd970867e63bd978.tar.gz
cpython-aa51182320f3c391195eb7d5bd970867e63bd978.tar.bz2
gh-109140: Rename duplicated tests in `test_binascii` (#109141)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_binascii.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_binascii.py b/Lib/test/test_binascii.py
index eb831b1..3d3e074 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)