From 455c6d188b6f07d1814d15a9cd2bbd5180c1336f Mon Sep 17 00:00:00 2001
From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Date: Sat, 7 Nov 2020 00:22:36 +0100
Subject: [PATCH] test: fix a typo in election_basic

The typo led to not resetting the election timeout to the default
value. It was left 1000, and as a result the next election tests
could work extremely long.

Part of #5499
---
 test/replication/election_basic.result   | 2 +-
 test/replication/election_basic.test.lua | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/replication/election_basic.result b/test/replication/election_basic.result
index 03917c7e40..4d7d33f2ba 100644
--- a/test/replication/election_basic.result
+++ b/test/replication/election_basic.result
@@ -6,7 +6,7 @@ test_run = require('test_run').new()
 -- gh-1146: Raft protocol for automated leader election.
 --
 
-old_election_timeout = box.cfg_election_timeout
+old_election_timeout = box.cfg.election_timeout
  | ---
  | ...
 
diff --git a/test/replication/election_basic.test.lua b/test/replication/election_basic.test.lua
index 1b4bb8d273..821f73cea4 100644
--- a/test/replication/election_basic.test.lua
+++ b/test/replication/election_basic.test.lua
@@ -3,7 +3,7 @@ test_run = require('test_run').new()
 -- gh-1146: Raft protocol for automated leader election.
 --
 
-old_election_timeout = box.cfg_election_timeout
+old_election_timeout = box.cfg.election_timeout
 
 -- Election is turned off by default.
 assert(box.cfg.election_mode == 'off')
-- 
GitLab