Skip to content

Commit 732ba26

Browse files
committed
Fix test
1 parent f80bcdd commit 732ba26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_sys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ def test_thread_info(self):
741741

742742
def test_abi_info(self):
743743
info = sys.abi_info
744-
self.assertEqual(len(info.__dict__), 3)
744+
self.assertEqual(len(info.__dict__), 4)
745745
pointer_bits = 64 if sys.maxsize > 2**32 else 32
746746
self.assertEqual(info.pointer_bits, pointer_bits)
747747
self.assertEqual(info.byteorder, sys.byteorder)

0 commit comments

Comments
 (0)