aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/tests/unit/benchmark/contexts/test_node.py
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2018-06-29 17:35:48 +0100
committerRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2018-06-29 17:36:06 +0100
commit0c997fce84d917171c5bab2ed39d7856e58b9a5a (patch)
tree41b8931b001cfb32a330347039ca33f56e084b9d /yardstick/tests/unit/benchmark/contexts/test_node.py
parentc599328fe0514e4f6a5358acf0b0222b0403f5fa (diff)
Cleanup NodeContextTestCase unit tests
Removed deprecated functions. JIRA: YARDSTICK-1273 Change-Id: I055b8393e6b25eb08f718cd8a915c6ea684786d8 Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Diffstat (limited to 'yardstick/tests/unit/benchmark/contexts/test_node.py')
-rw-r--r--yardstick/tests/unit/benchmark/contexts/test_node.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/tests/unit/benchmark/contexts/test_node.py b/yardstick/tests/unit/benchmark/contexts/test_node.py
index 5d7b24c3d..7fd13a406 100644
--- a/yardstick/tests/unit/benchmark/contexts/test_node.py
+++ b/yardstick/tests/unit/benchmark/contexts/test_node.py
@@ -170,7 +170,7 @@ class NodeContextTestCase(unittest.TestCase):
def test__get_physical_nodes(self):
self.test_context.init(self.attrs)
nodes = self.test_context._get_physical_nodes()
- self.assertEquals(nodes, self.test_context.nodes)
+ self.assertEqual(nodes, self.test_context.nodes)
def test__get_physical_node_for_server(self):
self.test_context.init(self.attrs)
@@ -198,7 +198,7 @@ class NodeContextTestCase(unittest.TestCase):
node_collectd_options = [node for node in self.test_context.nodes
if node['name'] == 'node1'][0]['collectd']
- self.assertEquals(node_collectd_options, options)
+ self.assertEqual(node_collectd_options, options)
@mock.patch('{}.NodeContext._dispatch_script'.format(PREFIX))
def test_deploy(self, dispatch_script_mock):