Skip to content

Commit da7914d

Browse files
committed
Fix func name inside bdd test
bddtests/chaincode.go: createPropsalID --> createProposalID. Change-Id: Ifa5823b3c7de14aec962ec148c869881740d8908 Signed-off-by: Baohua Yang <[email protected]>
1 parent 4c63856 commit da7914d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bddtests/chaincode.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func createChaincodeSpec(ccType string, path string, args [][]byte) *pb.Chaincod
3434

3535
}
3636

37-
func createPropsalID() string {
37+
func createProposalID() string {
3838
return util.GenerateUUID()
3939
}
4040

@@ -49,7 +49,7 @@ func createProposalForChaincode(ccChaincodeDeploymentSpec *pb.ChaincodeDeploymen
4949
CtorMsg: &pb.ChaincodeInput{Args: [][]byte{[]byte("deploy"), []byte("default"), ccDeploymentSpecBytes}}}
5050
lcChaincodeInvocationSpec := &pb.ChaincodeInvocationSpec{ChaincodeSpec: lcChaincodeSpec}
5151

52-
uuid := createPropsalID()
52+
uuid := createProposalID()
5353

5454
// make proposal
5555
return putils.CreateChaincodeProposal(uuid, util.GetTestChainID(), lcChaincodeInvocationSpec, creator)

0 commit comments

Comments
 (0)