Skip to content
Snippets Groups Projects
Commit 79f25031 authored by Robin Mueller's avatar Robin Mueller
Browse files

unit test times adapted

parent dfbf70d1
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment