()
| 1910 | self.loop._run_once = _run_once |
| 1911 | |
| 1912 | async def wait(): |
| 1913 | await asyncio.sleep(1e-2) |
| 1914 | await asyncio.sleep(1e-4) |
| 1915 | await asyncio.sleep(1e-6) |
| 1916 | await asyncio.sleep(1e-8) |
| 1917 | await asyncio.sleep(1e-10) |
| 1918 | |
| 1919 | self.loop.run_until_complete(wait()) |
| 1920 | # The ideal number of call is 12, but on some platforms, the selector |
no test coverage detected