From: Serhiy Storchaka Date: Thu, 6 Nov 2025 16:48:58 +0000 (+0200) Subject: Remove duplicated tests in test_base64 (gh-125346) (GH-141153) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e95e783dff443b68e8179fdb57737025bf02ba76;p=thirdparty%2FPython%2Fcpython.git Remove duplicated tests in test_base64 (gh-125346) (GH-141153) --- diff --git a/Lib/test/test_base64.py b/Lib/test/test_base64.py index 65977ca8c9f2..ac3f09405457 100644 --- a/Lib/test/test_base64.py +++ b/Lib/test/test_base64.py @@ -394,10 +394,6 @@ class BaseXYTestCase(unittest.TestCase): self.assertRaises(binascii.Error, base64.b32decode, b'me======') self.assertRaises(binascii.Error, base64.b32decode, 'me======') - # Mapping zero and one - eq(base64.b32decode(b'MLO23456'), b'b\xdd\xad\xf3\xbe') - eq(base64.b32decode('MLO23456'), b'b\xdd\xad\xf3\xbe') - def test_b32decode_map01(self): # Mapping zero and one eq = self.assertEqual