test_select: use a timeout=0 in test_errno()

This commit is contained in:
Victor Stinner 2011-10-16 20:48:52 +02:00
parent 5a3ff79fd6
commit 386c2d8b4e
1 changed files with 1 additions and 1 deletions

View File

@ -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: