____________________________________________ test_run_command_returns_echo ____________________________________________
def test_run_command_returns_echo():
"""Checks that a single line is returned from command"""
output, error = run.run_command('echo "Hello!"')
assert error == b""
> assert output == b"Hello!\n"
E assert b'"Hello!"\r\n' == b'Hello!\n'
E At index 0 diff: b'"' != b'H'
E Use -v to get the full diff
tests\test_run.py:10: AssertionError