Merge pull request #105 from vbatts/compare_test_openbsd

compare: make the test output more readable
This commit is contained in:
Vincent Batts 2016-12-08 09:59:00 -05:00 committed by GitHub
commit 556bb352d2

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 {