Remove datastoretest from internal namespace so third-party datastore implementations can test compliance (#1091)

This commit is contained in:
Richard Connon
2018-06-26 10:43:20 +01:00
committed by GitHub
parent 41bec645b3
commit cd24e1e431
3 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ package datastore
import ( import (
"testing" "testing"
"github.com/fnproject/fn/api/datastore/internal/datastoretest" "github.com/fnproject/fn/api/datastore/datastoretest"
"github.com/fnproject/fn/api/models" "github.com/fnproject/fn/api/models"
) )

View File

@@ -6,7 +6,7 @@ import (
"os" "os"
"testing" "testing"
"github.com/fnproject/fn/api/datastore/internal/datastoretest" "github.com/fnproject/fn/api/datastore/datastoretest"
"github.com/fnproject/fn/api/datastore/internal/datastoreutil" "github.com/fnproject/fn/api/datastore/internal/datastoreutil"
"github.com/fnproject/fn/api/datastore/sql/migratex" "github.com/fnproject/fn/api/datastore/sql/migratex"
"github.com/fnproject/fn/api/datastore/sql/migrations" "github.com/fnproject/fn/api/datastore/sql/migrations"