compare: make the test output more readable

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-12-08 08:26:05 -05:00
parent 26ccc7a48c
commit d857d58104
1 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package mtree
import (
"archive/tar"
"bytes"
"encoding/json"
"io"
"io/ioutil"
"os"
@ -443,7 +444,12 @@ func TestTarCompare(t *testing.T) {
}
actualFailure = true
t.Logf("FAILURE: diff[%d] = %#v", i, delta)
buf, err := json.MarshalIndent(delta, "", " ")
if err == nil {
t.Logf("FAILURE: diff[%d] = %s", i, string(buf))
} else {
t.Logf("FAILURE: diff[%d] = %#v", i, delta)
}
}
if actualFailure {