Skip to content

Commit 93ccc88

Browse files
committed
Temporary fix for failing CI for master branch
TestHTTPExecuteDeployTransaction is failing on master because it is trying to go get http://github.com/hyperledger/fabric-test-resources/examples/chaincode/go/chaincode_example01 which implements new interfaces from the convergence branch. This patch points the test at a different repo for now and demonstrates usage of gopkg.in to attempt to overcome limitations of go versioning Fixes FAB-305 Change-Id: I55113b36a7cd6c505e7dc2503a31d91fa11b8c5b Signed-off-by: Gari Singh <[email protected]>
1 parent 65389b9 commit 93ccc88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/chaincode/exectransaction_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ func TestHTTPExecuteDeployTransaction(t *testing.T) {
376376
// itself or it won't be downloaded because it will be found
377377
// in GOPATH, which would defeat the test
378378
testDBWrapper.CleanDB(t)
379-
executeDeployTransaction(t, "http://github.com/hyperledger/fabric-test-resources/examples/chaincode/go/chaincode_example01")
379+
executeDeployTransaction(t, "http://gopkg.in/mastersingh24/fabric-test-resources.v0")
380380
}
381381

382382
// Check the correctness of the final state after transaction execution.

0 commit comments

Comments
 (0)