Delete a node work

This commit is contained in:
Julien Duponchelle
2016-05-13 17:49:28 +02:00
parent be1efe8327
commit 885d93be02
3 changed files with 5 additions and 5 deletions

View File

@ -148,7 +148,7 @@ def test_termination_callback(vm, async_run):
async_run(queue.get(0)) #  Ping
(action, event, kwargs) = async_run(queue.get(0))
assert action == "node.stopped"
assert action == "node.updated"
assert event == vm
@ -167,7 +167,7 @@ def test_termination_callback_error(vm, tmpdir, async_run):
async_run(queue.get(0)) #  Ping
(action, event, kwargs) = queue.get_nowait()
assert action == "node.stopped"
assert action == "node.updated"
assert event == vm
(action, event, kwargs) = queue.get_nowait()