From de55d472c6ef4ce846f42d69a4caa7f33772f32f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jules=20Ch=C3=A9ron?= Date: Sun, 25 Jul 2021 23:17:06 +0200 Subject: [PATCH] Fix dask tests --- pint/testsuite/test_dask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pint/testsuite/test_dask.py b/pint/testsuite/test_dask.py index 5701914c2..cb4d2c0d8 100644 --- a/pint/testsuite/test_dask.py +++ b/pint/testsuite/test_dask.py @@ -192,7 +192,7 @@ def test_distributed_persist(loop, dask_array): assert q.magnitude is dask_array -@gen_cluster(client=True, timeout=None) +@gen_cluster(client=True) async def test_async(c, s, a, b): """Test asynchronous operations.""" da = dask.array.arange(0, 25, chunks=5, dtype=float).reshape((5, 5))