Skip to content

Commit

Permalink
Update Lib/test/test_mmap.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored Sep 20, 2024
1 parent ed0fc42 commit 222fcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_mmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ def test_flush_return_value(self):
mm.write(b'python')
result = mm.flush()
self.assertIsNone(result)
if (sys.platform.startswith(('linux', 'android'))
if (sys.platform.startswith(('linux', 'android'))
and not in_systemd_nspawn_sync_suppressed()):
# 'offset' must be a multiple of mmap.PAGESIZE on Linux.
# See bpo-34754 for details.
Expand Down

0 comments on commit 222fcc0

Please sign in to comment.