mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
Small fix in test. (#441)
This commit is contained in:
parent
de6ec47f9e
commit
9a6991116f
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue