test_select: use a timeout=0 in test_errno()
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 @@
             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: