1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2025-07-15 11:19:11 +00:00

*.go: clean up variable names

This commit is contained in:
Vincent Batts 2018-08-16 16:28:06 -04:00
parent 2f374a383e
commit 03270d3d9e
2 changed files with 19 additions and 14 deletions

View file

@ -4,6 +4,8 @@ import (
"io/ioutil"
"os"
"testing"
"github.com/davecgh/go-spew/spew"
)
var (
@ -54,14 +56,15 @@ func TestParser(t *testing.T) {
if err != nil {
t.Error(err)
}
/*
if i == 1 {
buf, err := xml.MarshalIndent(dh, "", " ")
if err == nil {
t.Error(string(buf))
}
}
*/
if i == 1 {
spew.Dump(dh)
//buf, err := xml.MarshalIndent(dh, "", " ")
//if err == nil {
//t.Error(string(buf))
//}
}
gotNums := countTypes(dh)
for typ, num := range tf.Counts {
if gNum, ok := gotNums[typ]; ok {