From 297fc42e66b892c8ee686768be316907eddc1857 Mon Sep 17 00:00:00 2001 From: Diogo Monica Date: Tue, 28 Jul 2015 15:32:01 -0700 Subject: [PATCH] Fixing tests Signed-off-by: Diogo Monica --- cmd/notary/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/notary/main.go b/cmd/notary/main.go index 7a3da8f0c7..9156686b79 100644 --- a/cmd/notary/main.go +++ b/cmd/notary/main.go @@ -90,8 +90,8 @@ func main() { notaryCmd.PersistentFlags().StringVarP(&trustDir, "trustdir", "d", "", "directory where the trust data is persisted to") notaryCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose output") - NotaryCmd.AddCommand(cmdKey) - NotaryCmd.AddCommand(cmdTufInit) + notaryCmd.AddCommand(cmdKey) + notaryCmd.AddCommand(cmdTufInit) cmdTufInit.Flags().StringVarP(&remoteTrustServer, "server", "s", defaultServerURL, "Remote trust server location") notaryCmd.AddCommand(cmdTufList) cmdTufList.Flags().BoolVarP(&rawOutput, "raw", "", false, "Instructs notary list to output a nonpretty printed version of the targets list. Useful if you need to parse the list.")