From ab9929b81d105c831db7b95502fc7c6707d38e21 Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Fri, 18 Oct 2013 07:51:47 -0400 Subject: Fix shell output unittests Since fix for 0ed431a went in we revert our unittests to the old (working) behavior. Signed-off-by: Adam Stokes --- tests/utilities_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/utilities_tests.py') diff --git a/tests/utilities_tests.py b/tests/utilities_tests.py index 9cce51a4..fc9e858f 100644 --- a/tests/utilities_tests.py +++ b/tests/utilities_tests.py @@ -78,7 +78,7 @@ class ExecutableTest(unittest.TestCase): path = os.path.join(TEST_DIR, 'test_exe.py') ret, out, junk = sos_get_command_output(path) self.assertEquals(ret, 0) - self.assertEquals(out, "executed") + self.assertEquals(out, "executed\n") def test_output_non_exe(self): path = os.path.join(TEST_DIR, 'utility_tests.py') @@ -88,7 +88,7 @@ class ExecutableTest(unittest.TestCase): def test_shell_out(self): path = os.path.join(TEST_DIR, 'test_exe.py') - self.assertEquals("executed", shell_out(path)) + self.assertEquals("executed\n", shell_out(path)) class FindTest(unittest.TestCase): -- cgit