From 680e61b6f96ec375046360710f6d8267cb0d1b32 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Thu, 7 Dec 2023 14:40:10 +0100 Subject: [PATCH] Revert "tests/periph/timer: increase test timeout" This reverts commit 9e7e8a91a841899302a919039f5ee89b114a513e. --- tests/periph/timer/tests/01-run.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/periph/timer/tests/01-run.py b/tests/periph/timer/tests/01-run.py index 22c7ba7bb5512..8e4222cf53835 100755 --- a/tests/periph/timer/tests/01-run.py +++ b/tests/periph/timer/tests/01-run.py @@ -9,16 +9,13 @@ import sys from testrunner import run -# The test can take some time when timers are slow ticking -TIMEOUT = 90 - def testfunc(child): # Make sure the expected application is actually flashed child.expect('Test for peripheral TIMERs') # The C application carefully evaluates the test results, no need to # re-implement that wheel in python and just check for the test to succeed - child.expect('TEST SUCCEEDED', timeout=TIMEOUT) + child.expect('TEST SUCCEEDED') if __name__ == "__main__":