diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utilities_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utilities_tests.py b/tests/utilities_tests.py index 8e1514b0..f556b9a4 100644 --- a/tests/utilities_tests.py +++ b/tests/utilities_tests.py @@ -65,7 +65,7 @@ class ExecutableTest(unittest.TestCase): path = os.path.join(TEST_DIR, 'utility_tests.py') result = sos_get_command_output(path) self.assertEquals(result['status'], 127) - self.assertEquals(result['output'], "") + self.assertEquals(result['output'], b"") def test_output_chdir(self): cmd = "/bin/bash -c 'echo $PWD'" |