From 79f25031f103e3a3164abeff94b88495f34550bc Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" <robin.mueller.m@gmail.com> Date: Thu, 23 Apr 2020 15:15:28 +0200 Subject: [PATCH] unit test times adapted --- test/obsw_pus_service_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/obsw_pus_service_test.py b/test/obsw_pus_service_test.py index 7746da3..bf990a7 100644 --- a/test/obsw_pus_service_test.py +++ b/test/obsw_pus_service_test.py @@ -25,7 +25,7 @@ class TestService2(TestService): print("Testing Service 2") # all commands must be sent sequentially, not as a burst cls.wait_intervals = [1, 2, 3, 4] - cls.wait_time = [2.0, 2.0, 2.0, 2.0] + cls.wait_time = [1.0, 2.5, 1.0, 2.5] pack_service2_test_into(cls.test_queue) def test_service2(self): @@ -72,8 +72,8 @@ class TestService5(TestService): print("Testing Service 5") # Wait intervals after TC 1,2 and 3 with specified wait times # This is required because the OBSW tasks runs with fixed sequences - cls.wait_intervals = [1, 2, 3] - cls.wait_time = [1.5, 2.0, 2.0] + cls.wait_intervals = [1, 2, 3, 4] + cls.wait_time = [0.5, 1.5, 0.5, 1.5] pack_service5_test_into(cls.test_queue) def test_Service5(self): -- GitLab