From eb70743b285d76346cbba7a40706aac713703ef9 Mon Sep 17 00:00:00 2001 From: Wiktoria Kuna Date: Thu, 2 Jan 2025 17:24:39 +0100 Subject: [PATCH] test_payload_executor: Update reg name Signed-off-by: Wiktoria Kuna --- tests/test_payload_executor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_payload_executor.py b/tests/test_payload_executor.py index 23bf3131d..456345ec8 100644 --- a/tests/test_payload_executor.py +++ b/tests/test_payload_executor.py @@ -1180,8 +1180,8 @@ def generator(dut, expected_cycle_count): while not (yield dut.payload_executor.ready): yield - start_cycle = yield dut.payload_executor.payload_exec_start - stop_cycle = yield dut.payload_executor.payload_exec_stop + start_cycle = yield dut.payload_executor.exec_start + stop_cycle = yield dut.payload_executor.exec_stop yield self.assertNotEqual(start_cycle, 0)