Merge pull request #5498 from influxdata/fix-vet

Fix vet error
pull/5508/head
Cory LaNou 2016-02-01 15:45:19 -06:00
commit fd85ae5b7f
1 changed files with 1 additions and 1 deletions

View File

@ -1028,7 +1028,7 @@ func TestGreaterThan(t *testing.T) {
} {
got := greaterThan(tt.a, tt.b)
if got != tt.expected {
t.Errorf("greaterThan failed for %#T(%[1]v) > %#T(%[2]v), got %v, expected %v.", tt.a, tt.b, got, tt.expected)
t.Errorf("greaterThan failed for %T(%[1]v) > %T(%[2]v), got %v, expected %v.", tt.a, tt.b, got, tt.expected)
}
}