From fcc1cbb6876f2ccb2ef2ffa5c7c596bf3ef30b15 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Fri, 27 Jan 2023 16:29:23 +0000 Subject: [PATCH] Fix the build (#3962) The commit https://github.com/hyperledger/fabric/commit/116551e788071298854f3d61df198b32d0b3156d added a scenario test that uses the FullEtcdRaft() network. This had been removed in an earlier commit. Teh test has been changed to use BasicEtcRaft() Signed-off-by: andrew-coleman --- integration/e2e/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/e2e/e2e_test.go b/integration/e2e/e2e_test.go index c3595141a15..10d4196e08e 100644 --- a/integration/e2e/e2e_test.go +++ b/integration/e2e/e2e_test.go @@ -635,7 +635,7 @@ var _ = Describe("EndToEnd", func() { var process ifrit.Process BeforeEach(func() { - network = nwo.New(nwo.FullEtcdRaft(), testDir, client, StartPort(), components) + network = nwo.New(nwo.BasicEtcdRaft(), testDir, client, StartPort(), components) network.GenerateConfigTree() network.Bootstrap()