From 2f74c0f8ef8efc0cfcd32d095fef9662f73f1c69 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Sat, 28 Jan 2023 03:32:35 +0300 Subject: mechanical-rob: unescape html entities. --- test/requests/correlation_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/requests') diff --git a/test/requests/correlation_tests.py b/test/requests/correlation_tests.py index 5c5ad6f7..4fbe0075 100644 --- a/test/requests/correlation_tests.py +++ b/test/requests/correlation_tests.py @@ -166,7 +166,8 @@ def collect_failures(actual, expected, keys): __eq = tuple() for act_key, exp_key, title in keys: act_val, exp_val = ( - str(act_row[act_key]).strip(), str(exp_row[exp_key]).strip()) + html.unescape(str(act_row[act_key]).strip()), + str(exp_row[exp_key]).strip()) if act_val == exp_val: # __eq = __eq + ("PASSED",) continue -- cgit v1.2.3