Skip to content

Commit

Permalink
uasyncio.core: test_wait_for.py: Don't use float numbers.
Browse files Browse the repository at this point in the history
In case we run on a platform without floats.
  • Loading branch information
pfalcon committed Feb 2, 2019
1 parent d104c2d commit 342ad69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uasyncio.core/test_wait_for.py
Expand Up @@ -10,7 +10,7 @@
def looper(iters):
for i in range(iters):
print("ping")
yield from asyncio.sleep(1.0)
yield from asyncio.sleep(1)
return 10


Expand Down

0 comments on commit 342ad69

Please sign in to comment.