2023-04-13 17:34:51 +02:00
|
|
|
---
|
|
|
|
Lib/test/test_posix.py | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2023-06-02 21:32:04 +02:00
|
|
|
Index: Python-3.12.0b1/Lib/test/test_posix.py
|
|
|
|
===================================================================
|
|
|
|
--- Python-3.12.0b1.orig/Lib/test/test_posix.py
|
|
|
|
+++ Python-3.12.0b1/Lib/test/test_posix.py
|
|
|
|
@@ -431,7 +431,7 @@ class PosixTester(unittest.TestCase):
|
2023-04-13 17:34:51 +02:00
|
|
|
def test_posix_fadvise(self):
|
|
|
|
fd = os.open(os_helper.TESTFN, os.O_RDONLY)
|
|
|
|
try:
|
|
|
|
- posix.posix_fadvise(fd, 0, 0, posix.POSIX_FADV_WILLNEED)
|
|
|
|
+ posix.posix_fadvise(fd, 0, 0, posix.POSIX_FADV_RANDOM)
|
|
|
|
finally:
|
|
|
|
os.close(fd)
|
|
|
|
|