Skip to content

Commit

Permalink
[FAB-3022]fix GetQueryValue interface define
Browse files Browse the repository at this point in the history
Change-Id: I0b193a68d1f3403b148c790e2a1ed32f11d9d791
Signed-off-by: Frank Han <[email protected]>
  • Loading branch information
seprain committed Apr 6, 2017
1 parent 55bdb74 commit 5c04433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/base_test_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type BaseTestSetup interface {
InstallCC(chain fabricClient.Chain, chainCodeID string, chainCodePath string,
chainCodeVersion string, chaincodePackage []byte, targets []fabricClient.Peer) error
InstantiateCC(chain fabricClient.Chain, eventHub events.EventHub) error
GetQueryValue(t *testing.T, chain fabricClient.Chain) (string, error)
GetQueryValue(chain fabricClient.Chain) (string, error)
Invoke(chain fabricClient.Chain, eventHub events.EventHub) (string, error)
CreateAndJoinChannel(t *testing.T, chain fabricClient.Chain, eventHub events.EventHub)
GetCreatorID() ([]byte, error)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/install_chaincode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func TestMain(m *testing.M) {
var err error
chain, err = testSetup.GetChain()
if err != nil {
fmt.Printf("error from GetChains %v", err)
fmt.Printf("error from GetChain %v", err)
os.Exit(-1)
}
code := m.Run()
Expand Down

0 comments on commit 5c04433

Please sign in to comment.