From b4f5f12fa1461e73a943a590be2b699fcd5eb55e Mon Sep 17 00:00:00 2001 From: "Ille, Ondrej, Ing" Date: Wed, 5 Sep 2018 19:20:49 +0200 Subject: [PATCH] Bug-fix --- test/unit/TX_Arbitrator/TX_Arbitrator_tb.vhd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/unit/TX_Arbitrator/TX_Arbitrator_tb.vhd b/test/unit/TX_Arbitrator/TX_Arbitrator_tb.vhd index 2a5f8b3f..eab50435 100644 --- a/test/unit/TX_Arbitrator/TX_Arbitrator_tb.vhd +++ b/test/unit/TX_Arbitrator/TX_Arbitrator_tb.vhd @@ -546,15 +546,15 @@ begin false; metadata_mism <= true when - (mod_dlc_out /= tran_dlc_out) or - (mod_is_rtr /= tran_is_rtr) or - (mod_ident_type_out /= tran_ident_type_out) or - (mod_frame_type_out /= tran_frame_type_out)) and - now /= 0 fs) + ((mod_dlc_out /= tran_dlc_out) or + (mod_is_rtr /= tran_is_rtr) or + (mod_ident_type_out /= tran_ident_type_out) or + (mod_frame_type_out /= tran_frame_type_out)) and + (now /= 0 fs) else false; - hw_cmd_buf_index_mism <= true when (txt_hw_cmd_buf_index /= mod_buf_index and now /= 0 fs) + hw_cmd_buf_index_mism <= true when (txt_hw_cmd_buf_index /= mod_buf_index and now /= 0 fs) else false; -- GitLab