We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a9aae commit 09caf0bCopy full SHA for 09caf0b
tests/functional/test_run_created.py
@@ -12,7 +12,6 @@ def test_basic_run(self):
12
name = 'test-%s' % str(uuid.uuid4())
13
run_create = Run()
14
run_create.init(name, folder=common.FOLDER, running=False)
15
- uid = run_create.uid
16
17
self.assertEqual(name, run_create.name)
18
@@ -22,7 +21,7 @@ def test_basic_run(self):
22
21
self.assertEqual(data['status'], 'created')
23
24
run_start = Run()
25
- run_start.reconnect(name, uid)
+ run_start.reconnect(name)
26
27
data = client.get_run(name)
28
self.assertEqual(data['status'], 'running')
0 commit comments