diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-16 12:18:44 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-16 12:18:44 -0700 |
commit | 149afc8c9b3bd9b4467fc686d69d83d1781b8f67 (patch) | |
tree | 60aa467371dcf20aa32634b5f2e66c9f3b52f51b /functional_test.go | |
parent | Add Stringer support. (diff) | |
download | dedo-149afc8c9b3bd9b4467fc686d69d83d1781b8f67.tar.gz dedo-149afc8c9b3bd9b4467fc686d69d83d1781b8f67.tar.xz |
Rename errors.
Diffstat (limited to 'functional_test.go')
-rw-r--r-- | functional_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functional_test.go b/functional_test.go index f0b18cf..f7c3c3a 100644 --- a/functional_test.go +++ b/functional_test.go @@ -47,7 +47,7 @@ func TestParallelTransactions(t *testing.T) { local := current txn, err := db.Transaction() mutex.RUnlock() - if err == DatabaseNotOpenError { + if err == ErrDatabaseNotOpen { wg.Done() return } else if !assert.NoError(t, err) { |