aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/benchmark/scenarios/parser/test_parser.py
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2017-12-19 15:15:37 +0000
committerEmma Foley <emma.l.foley@intel.com>2018-01-25 20:30:53 +0000
commit4546d70b7532291150e9a5237f93dbe090bf99ff (patch)
treefaf4628d935721e58603d7e9cfdf5184d1693350 /tests/unit/benchmark/scenarios/parser/test_parser.py
parent44ee5e004f3af5dcdbbc1d172faba91b8419b6d6 (diff)
Replace assertEqual(x, True|False) with assert[True|False](x)
Change-Id: Id19df79b4d27aab1a83d8350ce6395e87c13472b JIRA: YARDSTICK-903 Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Diffstat (limited to 'tests/unit/benchmark/scenarios/parser/test_parser.py')
-rw-r--r--tests/unit/benchmark/scenarios/parser/test_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/benchmark/scenarios/parser/test_parser.py b/tests/unit/benchmark/scenarios/parser/test_parser.py
index 73d67f01f..014d724a5 100644
--- a/tests/unit/benchmark/scenarios/parser/test_parser.py
+++ b/tests/unit/benchmark/scenarios/parser/test_parser.py
@@ -32,7 +32,7 @@ class ParserTestCase(unittest.TestCase):
p = parser.Parser({}, {})
mock_subprocess.call().return_value = 0
p.setup()
- self.assertEqual(p.setup_done, True)
+ self.assertTrue(p.setup_done)
def test_parser_successful(self, mock_subprocess):
args = {
@@ -52,7 +52,7 @@ class ParserTestCase(unittest.TestCase):
p = parser.Parser({}, {})
mock_subprocess.call().return_value = 0
p.teardown()
- self.assertEqual(p.teardown_done, True)
+ self.assertTrue(p.teardown_done)
def main():