From b4ad38573781d2837e213410ef0935cc1ba81fb5 Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Wed, 31 Dec 2025 14:42:10 -0800 Subject: [PATCH] [test] increase `simulator.go()` time in key sequence jump test (#12249) Increase the simulation wait time from 2 to 5 seconds in the `test_mle_msg_key_seq_jump` after child restart. This larger time window accounts for randomness in the timing of the Child Update transmission. This makes the test more robust by ensuring the child has sufficient time to send its "Child Update Request". --- tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py b/tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py index 246343421..4113c4285 100755 --- a/tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py +++ b/tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py @@ -256,7 +256,7 @@ class MleMsgKeySeqJump(thread_cert.TestCase): self.assertEqual(child.get_key_sequence_counter(), 25) child.start() - self.simulator.go(2) + self.simulator.go(5) self.assertEqual(child.get_state(), 'child') self.assertEqual(leader.get_key_sequence_counter(), 25)