From aa5b62196839359cb2afa688391ec713d1731bc0 Mon Sep 17 00:00:00 2001 From: Ying Li Date: Wed, 28 Oct 2015 15:43:48 -0700 Subject: [PATCH] Fix import error after rebase Signed-off-by: Ying Li --- cmd/notary-signer/config.json | 2 +- trustmanager/keyfilestore_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/notary-signer/config.json b/cmd/notary-signer/config.json index 6aef21532f..943d145b44 100644 --- a/cmd/notary-signer/config.json +++ b/cmd/notary-signer/config.json @@ -4,7 +4,7 @@ "grpc_addr": ":7899", "cert_file": "./fixtures/notary-signer.crt", "key_file": "./fixtures/notary-signer.key", - "client_ca_file": "./fixtures/notary-server.crt" + "client_ca_file": "./fixtures/notary-server.crt" }, "crypto": { "pkcslib": "/usr/local/lib/softhsm/libsofthsm2.so" diff --git a/trustmanager/keyfilestore_test.go b/trustmanager/keyfilestore_test.go index ed1edb4206..c499bb56ca 100644 --- a/trustmanager/keyfilestore_test.go +++ b/trustmanager/keyfilestore_test.go @@ -9,7 +9,7 @@ import ( "testing" "github.com/docker/notary/pkg/passphrase" - "github.com/endophage/gotuf/data" + "github.com/docker/notary/tuf/data" "github.com/stretchr/testify/assert" )