diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2018-01-26 21:12:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-26 21:12:53 +0000 |
commit | d2f89835fa08f88f0100dae2996c49302ee25614 (patch) | |
tree | 140bb122328c6ee677713334c8a35e0e27b033eb /tests/unit/benchmark/contexts/standalone | |
parent | e6b6f6fca60322f57329d1c93a01c88c3c81b62c (diff) | |
parent | 4546d70b7532291150e9a5237f93dbe090bf99ff (diff) |
Merge "Replace assertEqual(x, True|False) with assert[True|False](x)"
Diffstat (limited to 'tests/unit/benchmark/contexts/standalone')
-rw-r--r-- | tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py | 2 | ||||
-rw-r--r-- | tests/unit/benchmark/contexts/standalone/test_sriov.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py b/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py index d0a0d4e08..e39ecf4f2 100644 --- a/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py +++ b/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py @@ -65,7 +65,7 @@ class OvsDpdkContextTestCase(unittest.TestCase): self.ovs_dpdk.helper = mock_helper self.ovs_dpdk.vnf_node = mock_server self.assertIsNone(self.ovs_dpdk.file_path) - self.assertEqual(self.ovs_dpdk.first_run, True) + self.assertTrue(self.ovs_dpdk.first_run) def test_init(self): self.ovs_dpdk.helper.parse_pod_file = mock.Mock(return_value=[{}, {}, {}]) diff --git a/tests/unit/benchmark/contexts/standalone/test_sriov.py b/tests/unit/benchmark/contexts/standalone/test_sriov.py index 3ea673abc..7f11a7d59 100644 --- a/tests/unit/benchmark/contexts/standalone/test_sriov.py +++ b/tests/unit/benchmark/contexts/standalone/test_sriov.py @@ -70,7 +70,7 @@ class SriovContextTestCase(unittest.TestCase): self.sriov.helper = mock_helper self.sriov.vnf_node = mock_server self.assertIsNone(self.sriov.file_path) - self.assertEqual(self.sriov.first_run, True) + self.assertTrue(self.sriov.first_run) def test_init(self): self.sriov.helper.parse_pod_file = mock.Mock(return_value=[{}, {}, {}]) |