diff options
author | BonfaceKilz | 2020-09-22 03:43:50 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-09-22 03:43:50 +0300 |
commit | 125c75b724350dd750b8633410d4b9b3841ce984 (patch) | |
tree | 49cd9d03dbc68e183b0a4b7e62971e49f80995fd | |
parent | 957a465d8a91f9100fc23f285d6f01bc6b087323 (diff) | |
download | genenetwork2-125c75b724350dd750b8633410d4b9b3841ce984.tar.gz |
Update Mechanical Rob
* test/requests/main_web_functionality.py (check_search_page):
Breaking change introduced by updating text in search page. See:
9f76abc95
-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") |