Merge pull request #16054 from jfrazelle/update-sqlite3-dep

code.google.com is shutting down so update the dep
This commit is contained in:
Jessie Frazelle 2015-09-03 19:20:57 -07:00
commit 825f8fb744
2 changed files with 2 additions and 2 deletions

View file

@ -3,5 +3,5 @@
package graphdb package graphdb
import ( import (
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite _ "github.com/mattn/go-sqlite3" // registers sqlite
) )

View file

@ -8,7 +8,7 @@ import (
"strconv" "strconv"
"testing" "testing"
_ "code.google.com/p/gosqlite/sqlite3" _ "github.com/mattn/go-sqlite3"
) )
func newTestDb(t *testing.T) (*Database, string) { func newTestDb(t *testing.T) (*Database, string) {