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" -