From 1ea73c1b6aaa8c597d78feba7b93ffcb358f161d Mon Sep 17 00:00:00 2001 From: Brad Gorman Date: Wed, 31 Aug 2016 13:21:47 +0800 Subject: [PATCH] Switch back to fabric-test-resources As part of https://gerrit.hyperledger.org/r/#/c/365/ I forked the example code hosted on GitHub to pass the tests. Undoing that now so that the original GitHub repo can be used. The pull request to mirror this is at https://github.com/hyperledger/fabric-test-resources/pull/1 Change-Id: Ia0b504a35e9cba2318b0b80e8a75833b126ec726 Signed-off-by: Bradley Gorman --- core/chaincode/exectransaction_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/chaincode/exectransaction_test.go b/core/chaincode/exectransaction_test.go index b8a60a8a94f..dd19d4b5ad1 100644 --- a/core/chaincode/exectransaction_test.go +++ b/core/chaincode/exectransaction_test.go @@ -376,9 +376,7 @@ func TestHTTPExecuteDeployTransaction(t *testing.T) { // itself or it won't be downloaded because it will be found // in GOPATH, which would defeat the test testDBWrapper.CleanDB(t) - //executeDeployTransaction(t, "http://github.com/hyperledger/fabric-test-resources/examples/chaincode/go/chaincode_example01") - // forked the above until the ChaincodeStubInterface change is accepted into the fabric-test-resources project - executeDeployTransaction(t, "http://github.com/brad-gorman/fabric-test-resources/examples/chaincode/go/chaincode_example01") + executeDeployTransaction(t, "http://github.com/hyperledger/fabric-test-resources/examples/chaincode/go/chaincode_example01") } // Check the correctness of the final state after transaction execution.