Skip to content

Commit

Permalink
Fix go vet error (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Nov 27, 2020
1 parent aae55f7 commit f6dcc3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmark_test.go
Expand Up @@ -127,7 +127,8 @@ func BenchmarkExec(b *testing.B) {
}

if _, err := stmt.Exec(); err != nil {
b.Fatal(err.Error())
b.Logf("stmt.Exec failed: %v", err)
b.Fail()
}
}
}()
Expand Down

0 comments on commit f6dcc3d

Please sign in to comment.