Skip to content

Commit

Permalink
Fix broken master
Browse files Browse the repository at this point in the history
Update test dependencies to fix compilation error.

Change-Id: Ic6fad3c0f2b4dfa004985d8f71fb48f7422c090c
Signed-off-by: Artem Barger <bartem@il.ibm.com>
  • Loading branch information
C0rWin committed Mar 8, 2017
1 parent 7191d89 commit 1f5bc46
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
Expand Up @@ -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"
)

Expand All @@ -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()})
Expand Down

0 comments on commit 1f5bc46

Please sign in to comment.