From 242678c273498e72fa0e298a3d5a5e42aeac2034 Mon Sep 17 00:00:00 2001 From: mikaellafs Date: Tue, 30 Jan 2024 09:00:06 -0300 Subject: [PATCH] Fix godog test to verify running network on correct port MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Macedo --- chaincode/tests/request_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaincode/tests/request_test.go b/chaincode/tests/request_test.go index 964c780..b72f128 100644 --- a/chaincode/tests/request_test.go +++ b/chaincode/tests/request_test.go @@ -302,7 +302,7 @@ func thereIsARunningTestNetworkFromScratch(arg1 string) error { } func thereIsARunningTestNetwork(arg1 string) error { - if !verifyContainer("ccapi.org.example.com", "3000") { + if !verifyContainer("ccapi.org.example.com", "80") { // Start test network with 1 org only cmd := exec.Command("../../startDev.sh", "-n", "1")