about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--test/requests/link_checker.py2
-rw-r--r--test/requests/main_web_functionality.py3
2 files changed, 2 insertions, 3 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))
diff --git a/test/requests/main_web_functionality.py b/test/requests/main_web_functionality.py
index 78030307..cefb8b8c 100644
--- a/test/requests/main_web_functionality.py
+++ b/test/requests/main_web_functionality.py
@@ -9,7 +9,6 @@ def check_home(url):
     assert(search_button[0].value == "Search")
     print("OK")
 
-
 def check_search_page(host):
     data = dict(
         species="mouse",
@@ -19,7 +18,7 @@ def check_search_page(host):
         search_terms_or="",
         search_terms_and="MEAN=(15 16) LRS=(23 46)")
     result = requests.get(host+"/search", params=data)
-    found = result.text.find("records are shown below")
+    found = result.text.find("records were found.")
     assert(found >= 0)
     assert(result.status_code == 200)
     print("OK")