Skip to content

Commit

Permalink
Fix integration test for static leader (#513)
Browse files Browse the repository at this point in the history
Minor typo in the setup of the peer runners, which
lead to the test not actually checking for the expected
message.

FAB-17327

Signed-off-by: Will Lahti <wtlahti@us.ibm.com>
  • Loading branch information
wlahti authored and yacovm committed Jan 17, 2020
1 parent c7d595a commit b1260cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ var _ = Describe("EndToEnd", func() {
ordererProcess = ifrit.Invoke(ordererRunner)
Eventually(ordererProcess.Ready(), network.EventuallyTimeout).Should(BeClosed())

peerRunners := make([]*ginkgomon.Runner, len(network.Peers))
peerRunners = make([]*ginkgomon.Runner, len(network.Peers))
processes = map[string]ifrit.Process{}
for i, peer := range network.Peers {
pr := network.PeerRunner(peer)
Expand Down

0 comments on commit b1260cb

Please sign in to comment.