Skip to content

Commit 09caf0b

Browse files
authored
Shoudn't need to specify uuid
1 parent 62a9aae commit 09caf0b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/functional/test_run_created.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def test_basic_run(self):
1212
name = 'test-%s' % str(uuid.uuid4())
1313
run_create = Run()
1414
run_create.init(name, folder=common.FOLDER, running=False)
15-
uid = run_create.uid
1615

1716
self.assertEqual(name, run_create.name)
1817

@@ -22,7 +21,7 @@ def test_basic_run(self):
2221
self.assertEqual(data['status'], 'created')
2322

2423
run_start = Run()
25-
run_start.reconnect(name, uid)
24+
run_start.reconnect(name)
2625

2726
data = client.get_run(name)
2827
self.assertEqual(data['status'], 'running')

0 commit comments

Comments
 (0)