From eb6a93c0f0195dbb81f1e6931b3244c72d9ce376 Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Thu, 21 Nov 2019 18:30:57 -0800 Subject: [PATCH] [hotfix] fix lint (#6236) --- python/ray/tests/py3_test.py | 1 + python/ray/tests/test_actor.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tests/py3_test.py b/python/ray/tests/py3_test.py index 1c174a3b3..9a80fc197 100644 --- a/python/ray/tests/py3_test.py +++ b/python/ray/tests/py3_test.py @@ -96,6 +96,7 @@ def test_args_intertwined(ray_start_regular): test_function(local_method, actor_method) ray.get(remote_test_function.remote(local_method, actor_method)) + def test_asyncio_actor(ray_start_regular): @ray.remote class AsyncBatcher(object): diff --git a/python/ray/tests/test_actor.py b/python/ray/tests/test_actor.py index d7ec7912a..f31068e2b 100644 --- a/python/ray/tests/test_actor.py +++ b/python/ray/tests/test_actor.py @@ -2853,4 +2853,3 @@ ray.get(actor.ping.remote()) run_string_as_driver(driver_script) detached_actor = ray.experimental.get_actor(actor_name) assert ray.get(detached_actor.ping.remote()) == "pong" -