Rename content/fs to content/local

Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
Derek McGowan
2017-07-21 13:58:08 -07:00
parent 938f3185bd
commit bb3c9c5927
10 changed files with 12 additions and 12 deletions

View File

@@ -7,14 +7,14 @@ import (
"github.com/boltdb/bolt"
"github.com/containerd/containerd/content"
"github.com/containerd/containerd/content/fs"
"github.com/containerd/containerd/content/local"
"github.com/containerd/containerd/content/testsuite"
)
func TestContent(t *testing.T) {
testsuite.ContentSuite(t, "metadata", func(ctx context.Context, root string) (content.Store, func(), error) {
// TODO: Use mocked or in-memory store
cs, err := fs.NewStore(root)
cs, err := local.NewStore(root)
if err != nil {
return nil, nil, err
}