diff options
author | Frederick Muriuki Muriithi | 2023-01-28 03:32:35 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-01-28 03:32:35 +0300 |
commit | 2f74c0f8ef8efc0cfcd32d095fef9662f73f1c69 (patch) | |
tree | 03a77765d05d8e41d0a2ff717c58b8f52e7bace3 | |
parent | 0ae167297ed0f9a2fc6b3d1b4c6293901fe01f6a (diff) | |
download | genenetwork2-2f74c0f8ef8efc0cfcd32d095fef9662f73f1c69.tar.gz |
mechanical-rob: unescape html entities.
-rw-r--r-- | test/requests/correlation_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |