aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/tests/unit/common/test_ansible_common.py
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2018-02-20 15:38:34 +0000
committerEmma Foley <emma.l.foley@intel.com>2018-03-02 11:53:40 +0000
commit23c32c26ccba99c5307c865dfb7673cf5e6e1acc (patch)
tree2826145eee1be88303af5cbb9be319d10fbdc108 /yardstick/tests/unit/common/test_ansible_common.py
parent2736a90663e8d29cc968a5dac16b7606f9554001 (diff)
Make files pep8 compliant before replacing assertEqual(None, xx)
* tests/unit/network_services/helpers/test_samplevnf_helper.py * tests/unit/network_services/traffic_profile/test_rfc2544.py * yardstick/tests/unit/common/test_ansible_common.py JIRA: YARDSTICK-942 Signed-off-by: Emma Foley <emma.l.foley@intel.com> Change-Id: Ib3c71db5f5774d2bfb3a9cbd260b838eb5501448
Diffstat (limited to 'yardstick/tests/unit/common/test_ansible_common.py')
-rw-r--r--yardstick/tests/unit/common/test_ansible_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/tests/unit/common/test_ansible_common.py b/yardstick/tests/unit/common/test_ansible_common.py
index 89ea128af..07befa66b 100644
--- a/yardstick/tests/unit/common/test_ansible_common.py
+++ b/yardstick/tests/unit/common/test_ansible_common.py
@@ -145,7 +145,7 @@ class AnsibleNodeDictTestCase(unittest.TestCase):
class AnsibleCommonTestCase(unittest.TestCase):
def test_get_timeouts(self):
- self.assertAlmostEquals(ansible_common.AnsibleCommon.get_timeout(-100), 1200.0)
+ self.assertAlmostEqual(ansible_common.AnsibleCommon.get_timeout(-100), 1200.0)
def test__init__(self):
ansible_common.AnsibleCommon({})