aboutsummaryrefslogtreecommitdiff
path: root/test/requests/link_checker.py
diff options
context:
space:
mode:
authorBonfaceKilz2020-09-17 21:19:00 +0300
committerBonfaceKilz2020-09-17 21:25:35 +0300
commitd52cc25d120173de3fd16bbd42ea38498d458e35 (patch)
tree1ebad8627f83b63e2f209a4514540674179f7b0c /test/requests/link_checker.py
parentbfb5fab5ac57934f7a6bd54938188fa0d2669ad7 (diff)
downloadgenenetwork2-d52cc25d120173de3fd16bbd42ea38498d458e35.tar.gz
Update Mechanical Rob
* test/requests/link_checker.py (verify_static_file): Cast result.content.find's args to bytes. * test/requests/main_web_functionality.py (check_search_page): Update text to search for in a successful result. This value changed in 2aac6a06.
Diffstat (limited to 'test/requests/link_checker.py')
-rw-r--r--test/requests/link_checker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/link_checker.py b/test/requests/link_checker.py
index e9943492..6ac26ba7 100644
--- a/test/requests/link_checker.py
+++ b/test/requests/link_checker.py
@@ -54,7 +54,7 @@ def verify_static_file(link):
try:
result = requests.get(link, timeout=20, verify=False)
if (result.status_code == 200 and
- result.content.find("Error: 404 Not Found") <= 0):
+ result.content.find(bytes("Error: 404 Not Found", "utf-8")) <= 0):
print(link+" ==> OK")
else:
print("ERROR: link {}".format(link))