Commit 58045ce6 authored by Denis Bilenko's avatar Denis Bilenko

add test for select([1L], ...)

parent 01f78c6b
......@@ -9,5 +9,12 @@ class TestSelect(greentest.GenericWaitTestCase):
select.select([], [], [], timeout)
class TestSelectTypes(greentest.TestCase):
def test(self):
select.select([1], [], [], 0.001)
select.select([1L], [], [], 0.001)
if __name__=='__main__':
greentest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment