aboutsummaryrefslogtreecommitdiff
path: root/test/requests
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-01-28 03:32:35 +0300
committerFrederick Muriuki Muriithi2023-01-28 03:32:35 +0300
commit2f74c0f8ef8efc0cfcd32d095fef9662f73f1c69 (patch)
tree03a77765d05d8e41d0a2ff717c58b8f52e7bace3 /test/requests
parent0ae167297ed0f9a2fc6b3d1b4c6293901fe01f6a (diff)
downloadgenenetwork2-2f74c0f8ef8efc0cfcd32d095fef9662f73f1c69.tar.gz
mechanical-rob: unescape html entities.
Diffstat (limited to 'test/requests')
-rw-r--r--test/requests/correlation_tests.py3
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