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

changed timeout for srv17 module test

parent 8d74d79a
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,7 @@ class MultipleCommandSenderReceiver(SequentialCommandSenderReceiver):
try:
self._tm_listener.mode_id = g.ModeList.UnitTest
self._tm_listener.event_mode_change.set()
time.sleep(0.1)
# TC info queue is set in this function
self.__send_all_queue()
self.wait_for_last_replies_listening(self._tm_timeout / 1.4)
......
......@@ -75,8 +75,8 @@ class TestService5(TestService):
LOGGER.info("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 = [2.0, 2.0, 2.0]
cls.wait_intervals = [1, 2, 3, 4]
cls.wait_time = [2.0, 2.0, 2.0, 1.5]
pack_service5_test_into(cls.test_queue)
def test_Service5(self):
......@@ -154,8 +154,8 @@ class TestService17(TestService):
def setUpClass(cls: TestService):
super().setUpClass()
LOGGER.info("Testing Service 17")
cls.wait_intervals = [2, 3]
cls.wait_time = [2, 1]
cls.wait_intervals = [1, 2, 3, 4]
cls.wait_time = [1, 1, 1, 1]
cls.tm_timeout = g.G_TM_TIMEOUT
pack_service17_test_into(cls.test_queue)
......
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