Upgrade Watcher Tempest tests for multinode

Change-Id: I4b84ba9814227776232c8ab883cdaaf411930ee6
This commit is contained in:
Vincent Françoise
2016-04-11 16:05:51 +02:00
parent 1157a8db30
commit 77228a0b0a
6 changed files with 23 additions and 23 deletions

View File

@@ -18,8 +18,8 @@ from __future__ import unicode_literals
import functools
from tempest.lib import exceptions
from tempest import test
from tempest_lib import exceptions as lib_exc
from watcher_tempest_plugin.tests.api.admin import base
@@ -64,7 +64,7 @@ class TestCreateDeleteExecuteActionPlan(base.BaseInfraOptimTest):
self.client.delete_action_plan(action_plan['uuid'])
self.assertRaises(lib_exc.NotFound, self.client.show_action_plan,
self.assertRaises(exceptions.NotFound, self.client.show_action_plan,
action_plan['uuid'])
@test.attr(type='smoke')