Merge branch 'pt-3.0.5-pre-release' of percona.github.com:percona/percona-toolkit into pt-3.0.5-pre-release

This commit is contained in:
Carlos Salguero
2017-11-14 11:45:18 -03:00
2 changed files with 4 additions and 11 deletions

View File

@@ -214,7 +214,7 @@ func TestStatsSingle(t *testing.T) {
t.Fatalf("cannot load expected data %s: %s", dirExpect+f, err)
}
if !reflect.DeepEqual(got, expect) {
t.Errorf("s.Queries() = %v, want %v", got, expect)
t.Errorf("s.Queries() = %#v, want %#v", got, expect)
}
})
}
@@ -261,7 +261,7 @@ func TestStatsAll(t *testing.T) {
t.Fatalf("cannot load expected data %s: %s", f, err)
}
if !reflect.DeepEqual(got, expect) {
t.Errorf("s.Queries() = %v, want %v", got, expect)
t.Errorf("s.Queries() = %#v, want %#v", got, expect)
}
}
@@ -343,7 +343,7 @@ func TestAvailableMetrics(t *testing.T) {
}
if !reflect.DeepEqual(got, expect) {
t.Errorf("s.Queries() = %v, want %v", got, expect)
t.Errorf("s.Queries() = %#v, want %#v", got, expect)
}
})

View File

@@ -18,7 +18,6 @@ import (
"text/template"
"time"
"github.com/kr/pretty"
"github.com/pborman/getopt/v2"
"github.com/percona/percona-toolkit/src/go/lib/profiling"
"github.com/percona/percona-toolkit/src/go/lib/tutil"
@@ -404,10 +403,6 @@ func testAllOperationsTemplate(t *testing.T, data Data) {
expected := `Profiler is disabled for the "test" database but there are \s*[0-9]+ documents in the system.profile collection.
Using those documents for the stats
pt-mongodb-query-digest .+
Host: ` + data.url + `
Skipping profiled queries on these collections: \[system\.profile\]
# Totals
# Ratio [0-9\.]+ \(docs scanned/returned\)
@@ -450,9 +445,7 @@ Skipping profiled queries on these collections: \[system\.profile\]
expected += buf.String()
}
fmt.Println("====================================================================================================")
pretty.Println(string(output))
fmt.Println("====================================================================================================")
expected += "\n" // Looks like we expect additional line
assertRegexpLines(t, expected, string(output))
}