From 72fe6e38601925cbf642e7ca42012d6a9bb5f03d Mon Sep 17 00:00:00 2001 From: naglera Date: Thu, 6 Jun 2024 12:10:16 +0000 Subject: [PATCH] spel check fix Signed-off-by: naglera --- tests/support/test.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/support/test.tcl b/tests/support/test.tcl index 7a87b7161d..ad53810818 100644 --- a/tests/support/test.tcl +++ b/tests/support/test.tcl @@ -155,8 +155,8 @@ proc verify_replica_online {master replica_idx max_retry} { } } if {$count_down == 0} { - set threashold [expr {$max_retry*$pause/1000}] - error "assertion:Replica is not in sync after $threashold seconds" + set threshold [expr {$max_retry*$pause/1000}] + error "assertion:Replica is not in sync after $threshold seconds" } }