From 1f5bc4685be8eb4d0fa38e477d3a29924a768bb9 Mon Sep 17 00:00:00 2001 From: Artem Barger Date: Wed, 8 Mar 2017 11:39:14 +0200 Subject: [PATCH] Fix broken master Update test dependencies to fix compilation error. Change-Id: Ic6fad3c0f2b4dfa004985d8f71fb48f7422c090c Signed-off-by: Artem Barger --- msp/mgmt/mgmt_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msp/mgmt/mgmt_test.go b/msp/mgmt/mgmt_test.go index c2b61c29b3d..28ec8e9879b 100644 --- a/msp/mgmt/mgmt_test.go +++ b/msp/mgmt/mgmt_test.go @@ -19,7 +19,7 @@ package mgmt import ( "testing" - configvaluesmsp "github.com/hyperledger/fabric/common/configvalues/msp" + configvaluesmsp "github.com/hyperledger/fabric/common/config/msp" "github.com/hyperledger/fabric/msp" ) @@ -44,7 +44,7 @@ func TestGetManagerForChains_usingMSPConfigHandlers(t *testing.T) { msp1 := GetManagerForChain("test") // return value should be nil because the MSPManager was not initialized if msp1 != nil { - t.Fatalf("MSPManager should have been nil") + t.Fatal("MSPManager should have been nil") } XXXSetMSPManager("foo", &configvaluesmsp.MSPConfigHandler{MSPManager: msp.NewMSPManager()})