diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-08-05 14:42:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 14:42:39 (GMT) |
commit | 787498cbbb7d1c7115a7af4435efb7f607b10ed1 (patch) | |
tree | dab1723a2742c113274821782b4f715e64a0e70b /Lib/test/test_importlib/test_util.py | |
parent | bacbc35830a493198ea40e3ab81613d5d187c577 (diff) | |
download | cpython-787498cbbb7d1c7115a7af4435efb7f607b10ed1.zip cpython-787498cbbb7d1c7115a7af4435efb7f607b10ed1.tar.gz cpython-787498cbbb7d1c7115a7af4435efb7f607b10ed1.tar.bz2 |
Update the magic number in test_util.py (#95714)
Diffstat (limited to 'Lib/test/test_importlib/test_util.py')
-rw-r--r-- | Lib/test/test_importlib/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index c77c781..a62d68f 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -860,7 +860,7 @@ class MagicNumberTests(unittest.TestCase): # stakeholders such as OS package maintainers must be notified # in advance. Such exceptional releases will then require an # adjustment to this test case. - EXPECTED_MAGIC_NUMBER = 3413 + EXPECTED_MAGIC_NUMBER = 3495 actual = int.from_bytes(importlib.util.MAGIC_NUMBER[:2], 'little') msg = ( |