We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7191d89 commit 1f5bc46Copy full SHA for 1f5bc46
msp/mgmt/mgmt_test.go
@@ -19,7 +19,7 @@ package mgmt
19
import (
20
"testing"
21
22
- configvaluesmsp "github.com/hyperledger/fabric/common/configvalues/msp"
+ configvaluesmsp "github.com/hyperledger/fabric/common/config/msp"
23
"github.com/hyperledger/fabric/msp"
24
)
25
@@ -44,7 +44,7 @@ func TestGetManagerForChains_usingMSPConfigHandlers(t *testing.T) {
44
msp1 := GetManagerForChain("test")
45
// return value should be nil because the MSPManager was not initialized
46
if msp1 != nil {
47
- t.Fatalf("MSPManager should have been nil")
+ t.Fatal("MSPManager should have been nil")
48
}
49
50
XXXSetMSPManager("foo", &configvaluesmsp.MSPConfigHandler{MSPManager: msp.NewMSPManager()})
0 commit comments