aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBonfaceKilz2020-09-26 00:46:08 +0300
committerBonfaceKilz2020-09-26 00:46:08 +0300
commit09138b54e82225043aa5fde83b74233bcac589b0 (patch)
tree80dba8d8f11871b0302f25a53acf005189187ab3 /test
parentd52cc25d120173de3fd16bbd42ea38498d458e35 (diff)
parent3ec4eb6b831eaa5adcf32a9fca8a60ea229cc1c4 (diff)
downloadgenenetwork2-09138b54e82225043aa5fde83b74233bcac589b0.tar.gz
Merge branch 'testing' into build/python3-migration
Diffstat (limited to 'test')
-rw-r--r--test/requests/main_web_functionality.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/main_web_functionality.py b/test/requests/main_web_functionality.py
index cefb8b8c..28033ad5 100644
--- a/test/requests/main_web_functionality.py
+++ b/test/requests/main_web_functionality.py
@@ -18,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 were found.")
+ found = result.text.find("records were found")
assert(found >= 0)
assert(result.status_code == 200)
print("OK")