Fix misspell issues.

See,
$ gometalinter --vendor --disable-all --enable=misspell ./...
sqlite3.go:1379:45⚠️ "succesfully" is a misspelling of "successfully" (misspell)
sqlite3.go:1390:30⚠️ "registerd" is a misspelling of "registered" (misspell)
sqlite3_func_crypt.go:16:27⚠️ "ceasar" is a misspelling of "caesar" (misspell)
sqlite3_func_crypt.go:43:59⚠️ "Ceasar" is a misspelling of "Caesar" (misspell)
sqlite3_opt_userauth_test.go:450:27⚠️ "succesful" is a misspelling of "successful" (misspell)
sqlite3_opt_userauth_test.go:456:27⚠️ "succesful" is a misspelling of "successful" (misspell)
This commit is contained in:
Mario Trangoni
2018-11-21 11:14:40 +01:00
parent 1ef6010539
commit b76b90f754
3 changed files with 6 additions and 6 deletions

View File

@@ -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")
}
}