summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_select.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py
index c503440..ec77a49 100644
--- a/Lib/test/test_select.py
+++ b/Lib/test/test_select.py
@@ -28,7 +28,7 @@ class SelectTestCase(unittest.TestCase):
fd = fp.fileno()
fp.close()
try:
- select.select([fd], [], [])
+ select.select([fd], [], [], 0)
except select.error as err:
self.assertEqual(err.errno, errno.EBADF)
else: