2
0

Fix issues identified by go vet

This commit is contained in:
Jack Christensen
2017-05-06 19:48:03 -05:00
parent c78d450c19
commit 6a2a5e28fd
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -676,7 +676,7 @@ func TestConnBeginTxReadOnly(t *testing.T) {
var pgReadOnly string
err = tx.QueryRow("show transaction_read_only").Scan(&pgReadOnly)
if err != nil {
t.Errorf("%d. QueryRow failed: %v", err)
t.Errorf("QueryRow failed: %v", err)
}
if pgReadOnly != "on" {