mirror of
https://github.com/wassname/ray.git
synced 2026-08-05 13:21:03 +08:00
Small fix in test. (#441)
This commit is contained in:
committed by
Philipp Moritz
parent
de6ec47f9e
commit
9a6991116f
+2
-2
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user