1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-25 09:35:39 +00:00

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

View file

@ -3,6 +3,7 @@ package mtree
import ( import (
"archive/tar" "archive/tar"
"bytes" "bytes"
"encoding/json"
"io" "io"
"io/ioutil" "io/ioutil"
"os" "os"
@ -443,7 +444,12 @@ func TestTarCompare(t *testing.T) {
} }
actualFailure = true 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 { if actualFailure {