diff options
-rw-r--r-- | error_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/error_test.go b/error_test.go index 115a9f3..7fccd57 100644 --- a/error_test.go +++ b/error_test.go @@ -15,8 +15,8 @@ import ( func TestSimpleError(t *testing.T) { e := ErrError.Error() - if e != "SQL logic error or missing database" && e != "SQL error or missing database" { - t.Error("wrong error code:" + e) + if e != "SQL logic error or missing database" && e != "SQL logic error" { + t.Error("wrong error code: " + e) } } |