From b76b90f75407f7656fcf45c646145992c9195f81 Mon Sep 17 00:00:00 2001 From: Mario Trangoni Date: Wed, 21 Nov 2018 11:14:40 +0100 Subject: Fix misspell issues. See, $ gometalinter --vendor --disable-all --enable=misspell ./... sqlite3.go:1379:45:warning: "succesfully" is a misspelling of "successfully" (misspell) sqlite3.go:1390:30:warning: "registerd" is a misspelling of "registered" (misspell) sqlite3_func_crypt.go:16:27:warning: "ceasar" is a misspelling of "caesar" (misspell) sqlite3_func_crypt.go:43:59:warning: "Ceasar" is a misspelling of "Caesar" (misspell) sqlite3_opt_userauth_test.go:450:27:warning: "succesful" is a misspelling of "successful" (misspell) sqlite3_opt_userauth_test.go:456:27:warning: "succesful" is a misspelling of "successful" (misspell) --- sqlite3_opt_userauth_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sqlite3_opt_userauth_test.go') diff --git a/sqlite3_opt_userauth_test.go b/sqlite3_opt_userauth_test.go index b4ac4a9..df65215 100644 --- a/sqlite3_opt_userauth_test.go +++ b/sqlite3_opt_userauth_test.go @@ -447,13 +447,13 @@ func TestUserAuthModifyUser(t *testing.T) { t.Fatal(err) } if rv != SQLITE_AUTH { - t.Fatal("Password change succesful while not allowed") + t.Fatal("Password change successful while not allowed") } // Modify other user password and flag through *SQLiteConn err = c2.AuthUserChange("user2", "invalid", false) if err != ErrAdminRequired { - t.Fatal("Password change succesful while not allowed") + t.Fatal("Password change successful while not allowed") } } -- cgit v1.2.3