From 9a6991116f5dc9ca81ca66d84ec70b1c7add1405 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Sun, 25 Sep 2016 23:08:27 -0700 Subject: [PATCH] Small fix in test. (#441) --- test/runtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtest.py b/test/runtest.py index 3f8a2b8e5..a88df8cc1 100644 --- a/test/runtest.py +++ b/test/runtest.py @@ -479,8 +479,8 @@ class APITest(unittest.TestCase): return x, y a = f.remote(1) b = f.remote(1) - c = f.remote(a, b) - c = f.remote(a, 1) + c = g.remote(a, b) + c = g.remote(a, 1) # Make sure that we can produce a computation_graph visualization. ray.visualize_computation_graph(view=False)