diff options
author | BonfaceKilz | 2020-09-22 14:28:32 +0300 |
---|---|---|
committer | GitHub | 2020-09-22 14:28:32 +0300 |
commit | 28b348c9956d21228d01cac6c3668e5ea7abf2e2 (patch) | |
tree | a1bea7151c1263003e67b53472f04312331beabd /test | |
parent | 0fd23995fa21c32c2a6005b2fd70b0bd99d13214 (diff) | |
parent | 564b235bdc518a3ed91ca506ad2ac93d5bc91eef (diff) | |
download | genenetwork2-28b348c9956d21228d01cac6c3668e5ea7abf2e2.tar.gz |
Merge pull request #445 from BonfaceKilz/buid/add-ci
Buid/add ci
Diffstat (limited to 'test')
-rw-r--r-- | test/requests/main_web_functionality.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/main_web_functionality.py b/test/requests/main_web_functionality.py index d070dab9..d4c3b1ad 100644 --- a/test/requests/main_web_functionality.py +++ b/test/requests/main_web_functionality.py @@ -20,7 +20,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") |