Skip to content

Commit 66312f7

Browse files
committed
Merge pull request #437 from dveeden/fix_go_vet_driver_test
Fix error reported by `go vet`
2 parents 0f2db9e + 5a9482c commit 66312f7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Arne Hormann <arnehormann at gmail.com>
1616
Carlos Nieto <jose.carlos at menteslibres.net>
1717
Chris Moos <chris at tech9computers.com>
1818
Daniel Nichter <nil at codenode.com>
19+
Daniël van Eeden <git at myname.nl>
1920
DisposaBoy <disposaboy at dby.me>
2021
Frederick Mayle <frederickmayle at gmail.com>
2122
Gustavo Kristic <gkristic at gmail.com>

Diff for: driver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ func TestMultiQuery(t *testing.T) {
305305
if rows.Next() {
306306
rows.Scan(&out)
307307
if 5 != out {
308-
dbt.Errorf("5 != %t", out)
308+
dbt.Errorf("5 != %d", out)
309309
}
310310

311311
if rows.Next() {

0 commit comments

Comments
 (0)