Skip to content

Commit 1f5bc46

Browse files
committed
Fix broken master
Update test dependencies to fix compilation error. Change-Id: Ic6fad3c0f2b4dfa004985d8f71fb48f7422c090c Signed-off-by: Artem Barger <[email protected]>
1 parent 7191d89 commit 1f5bc46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msp/mgmt/mgmt_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package mgmt
1919
import (
2020
"testing"
2121

22-
configvaluesmsp "github.com/hyperledger/fabric/common/configvalues/msp"
22+
configvaluesmsp "github.com/hyperledger/fabric/common/config/msp"
2323
"github.com/hyperledger/fabric/msp"
2424
)
2525

@@ -44,7 +44,7 @@ func TestGetManagerForChains_usingMSPConfigHandlers(t *testing.T) {
4444
msp1 := GetManagerForChain("test")
4545
// return value should be nil because the MSPManager was not initialized
4646
if msp1 != nil {
47-
t.Fatalf("MSPManager should have been nil")
47+
t.Fatal("MSPManager should have been nil")
4848
}
4949

5050
XXXSetMSPManager("foo", &configvaluesmsp.MSPConfigHandler{MSPManager: msp.NewMSPManager()})

0 commit comments

Comments
 (0)