From c7b624f43df032b90ce884bc20c870f7e489f23f Mon Sep 17 00:00:00 2001 From: Gert-Jan Timmer Date: Thu, 14 Jun 2018 11:04:17 +0200 Subject: [PATCH] UserAuth: Fix Coverage --- sqlite3_opt_userauth_omit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite3_opt_userauth_omit.go b/sqlite3_opt_userauth_omit.go index f16b438..806a651 100644 --- a/sqlite3_opt_userauth_omit.go +++ b/sqlite3_opt_userauth_omit.go @@ -132,7 +132,7 @@ func (c *SQLiteConn) authUserDelete(username string) int { // AuthEnabled checks if the database is protected by user authentication func (c *SQLiteConn) AuthEnabled() (exists bool) { - _ := c.authEnabled() + c.authEnabled() return false }