Skip to content

Commit aa51182

Browse files
authored
gh-109140: Rename duplicated tests in test_binascii (#109141)
1 parent f63d378 commit aa51182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_binascii.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def test_uu(self):
233233
binary=hypothesis.strategies.binary(),
234234
backtick=hypothesis.strategies.booleans(),
235235
)
236-
def test_hex_roundtrip(self, binary, backtick):
236+
def test_b2a_roundtrip(self, binary, backtick):
237237
converted = binascii.b2a_uu(self.type2test(binary), backtick=backtick)
238238
restored = binascii.a2b_uu(self.type2test(converted))
239239
self.assertConversion(binary, converted, restored, backtick=backtick)

0 commit comments

Comments
 (0)