From f14bbdbd3505ff0868ccfb0ef3be36816d6d5849 Mon Sep 17 00:00:00 2001 From: Daniel Benusovich Date: Fri, 8 Mar 2019 20:03:34 -0800 Subject: [PATCH] Correct comments for test_cam_entry --- TLB/test/test_cam_entry.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/TLB/test/test_cam_entry.py b/TLB/test/test_cam_entry.py index 68a34c73..f131bce1 100644 --- a/TLB/test/test_cam_entry.py +++ b/TLB/test/test_cam_entry.py @@ -8,7 +8,6 @@ from test_helper import assert_eq, assert_ne, assert_op from CamEntry import CamEntry # This function allows for the easy setting of values to the Cam Entry -# unless the key is incorrect # Arguments: # dut: The CamEntry being tested # c (command): NA (0), Read (1), Write (2), Reserve (3) @@ -46,8 +45,8 @@ def check_match(dut, m, op): # dut: The CamEntry being tested # d (data): The expected data # m (match): The expected match -# d_op (Operation): The operation for the data assertion (0 => ==), (1 => !=) -# m_op (Operation): The operation for the match assertion (0 => ==), (1 => !=) +# d_op (Operation): Operation for the data assertion (0 => ==), (1 => !=) +# m_op (Operation): Operation for the match assertion (0 => ==), (1 => !=) def check_all(dut, d, m, d_op, m_op): yield from check_data(dut, d, d_op) yield from check_match(dut, m, m_op) -- 2.30.2