fixed typo

This commit is contained in:
Jesse Rittner 2018-12-08 08:39:01 -05:00
parent 5846e1aa22
commit 2fe51daa56
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func TestOpenNoCreate(t *testing.T) {
sqlErr, ok := err.(Error)
if !ok {
t.Fatalf("expected *Error, but got %T", err)
t.Fatalf("expected sqlite3.Error, but got %T", err)
}
if sqlErr.Code != ErrCantOpen {