# HG changeset patch # User Mads Kiilerich # Date 2019-01-16 03:11:06 # Node ID ed9fea79a32181e925fa13af8a66bf1b2e4ecd00 # Parent 4473f1094d3d267b84bcd382af1e05d69b84e0bb tests: better debugging of failing vcs Commands - show the actual output, not the repr diff --git a/kallithea/tests/other/test_vcs_operations.py b/kallithea/tests/other/test_vcs_operations.py --- a/kallithea/tests/other/test_vcs_operations.py +++ b/kallithea/tests/other/test_vcs_operations.py @@ -73,9 +73,9 @@ class Command(object): stdout, stderr = p.communicate() if DEBUG: if stdout: - print 'stdout:', repr(stdout) + print 'stdout:', stdout if stderr: - print 'stderr:', repr(stderr) + print 'stderr:', stderr if not ignoreReturnCode: assert p.returncode == 0 return stdout, stderr