Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msp/mgmt/mgmt_test.go
Original file line number Diff line number Diff line change
@@ -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()})

0 comments on commit 1f5bc46

Please sign in to comment.