mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 08:25:38 +00:00
compare: make the test output more readable
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
26ccc7a48c
commit
d857d58104
1 changed files with 7 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue