From ff73b67154ac7a6c89a82ad7d552c52f0bdd3beb Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Mon, 26 Aug 2019 23:24:40 -0700 Subject: [PATCH] fix test (#5544) --- python/ray/tests/test_object_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/tests/test_object_manager.py b/python/ray/tests/test_object_manager.py index b006272b8..a7cf48e09 100644 --- a/python/ray/tests/test_object_manager.py +++ b/python/ray/tests/test_object_manager.py @@ -52,11 +52,11 @@ def test_object_broadcast(ray_start_cluster_with_resource): def f(x): return - x = np.zeros(150 * 1024 * 1024, dtype=np.uint8) + x = np.zeros(10 * 1024 * 1024, dtype=np.uint8) @ray.remote def create_object(): - return np.zeros(150 * 1024 * 1024, dtype=np.uint8) + return np.zeros(10 * 1024 * 1024, dtype=np.uint8) object_ids = []