From 393e74653ba6072480f2227c9b68573342dd0b88 Mon Sep 17 00:00:00 2001 From: howardlee Date: Fri, 21 Oct 2016 15:00:37 +0800 Subject: [TrivialFix] Replace 'assertTrue(a in b)' with 'assertIn(a, b)' Change-Id: Ib61f2f2c695f79c8eb0fa47a2d2d1bc66ccaeb7f --- oslo_concurrency/tests/unit/test_processutils.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/oslo_concurrency/tests/unit/test_processutils.py b/oslo_concurrency/tests/unit/test_processutils.py index e5ef532..9227ea1 100644 --- a/oslo_concurrency/tests/unit/test_processutils.py +++ b/oslo_concurrency/tests/unit/test_processutils.py @@ -125,23 +125,23 @@ class ProcessExecutionErrorTest(test_base.BaseTestCase): def test_defaults(self): err = processutils.ProcessExecutionError() - self.assertTrue('None\n' in six.text_type(err)) - self.assertTrue('code: -\n' in six.text_type(err)) + self.assertIn('None\n', six.text_type(err)) + self.assertIn('code: -\n', six.text_type(err)) def test_with_description(self): description = 'The Narwhal Bacons at Midnight' err = processutils.ProcessExecutionError(description=description) - self.assertTrue(description in six.text_type(err)) + self.assertIn(description, six.text_type(err)) def test_with_exit_code(self): exit_code = 0 err = processutils.ProcessExecutionError(exit_code=exit_code) - self.assertTrue(str(exit_code) in six.text_type(err)) + self.assertIn(str(exit_code), six.text_type(err)) def test_with_cmd(self): cmd = 'telinit' err = processutils.ProcessExecutionError(cmd=cmd) - self.assertTrue(cmd in six.text_type(err)) + self.assertIn(cmd, six.text_type(err)) def test_with_stdout(self): stdout = """ @@ -165,12 +165,12 @@ class ProcessExecutionErrorTest(test_base.BaseTestCase): """.strip() err = processutils.ProcessExecutionError(stdout=stdout) print(six.text_type(err)) - self.assertTrue('people-kings' in six.text_type(err)) + self.assertIn('people-kings', six.text_type(err)) def test_with_stderr(self): stderr = 'Cottonian library' err = processutils.ProcessExecutionError(stderr=stderr) - self.assertTrue(stderr in six.text_type(err)) + self.assertIn(stderr, six.text_type(err)) def test_retry_on_failure(self): fd, tmpfilename = tempfile.mkstemp() -- cgit v1.2.1