diff options
author | John Gallagher <johnkgallagher@gmail.com> | 2012-04-06 22:46:11 -0400 |
---|---|---|
committer | John Gallagher <johnkgallagher@gmail.com> | 2012-04-06 22:46:11 -0400 |
commit | e85c34cf5c1492ab90e601561ae5b46a77df61d0 (patch) | |
tree | 21a64e9cc44a636bea26065e00137411b610705b | |
parent | add travis recepi. (diff) | |
download | golite-e85c34cf5c1492ab90e601561ae5b46a77df61d0.tar.gz golite-e85c34cf5c1492ab90e601561ae5b46a77df61d0.tar.xz |
Fix typo (Tailed -> Failed).
-rw-r--r-- | sqlite3_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_test.go b/sqlite3_test.go index 7cbe8c3..60feb86 100644 --- a/sqlite3_test.go +++ b/sqlite3_test.go @@ -213,7 +213,7 @@ func TestDelete(t *testing.T) { func TestBooleanRoundtrip(t *testing.T) { db, err := sql.Open("sqlite3", "./foo.db") if err != nil { - t.Errorf("Tailed to open database:", err) + t.Errorf("Failed to open database:", err) return } defer os.Remove("./foo.db") |