pkg/index/sqlite: fix tests

Long broken since the sha224 switch.

Updates #1085

Change-Id: I2dda3dac6bd3c8006be0974bdc9be402e25b7429
This commit is contained in:
mpl 2018-08-29 03:38:51 +02:00
parent edfa4d0d28
commit c243487bdb
1 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import (
"sync"
"testing"
"go4.org/jsonconfig"
"perkeep.org/internal/testhooks"
"perkeep.org/pkg/index"
"perkeep.org/pkg/index/indextest"
"perkeep.org/pkg/sorted"
@ -36,6 +36,7 @@ import (
_ "perkeep.org/pkg/sorted/sqlite"
_ "github.com/mattn/go-sqlite3"
"go4.org/jsonconfig"
)
var (
@ -43,6 +44,10 @@ var (
dbAvailable bool
)
func init() {
testhooks.SetUseSHA1(true)
}
func do(db *sql.DB, sql string) {
_, err := db.Exec(sql)
if err == nil {