diff options
author | Frederick Muriuki Muriithi | 2022-10-28 16:22:58 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-10-28 16:22:58 +0300 |
commit | 35f97be6f5633d0812edfec9d1c70a661457e4d5 (patch) | |
tree | 733ea74fb6a00729714d63397af7b17b60d5f163 | |
parent | 278621273f01435472a49fb84f77d9dbf581abae (diff) | |
download | genenetwork2-35f97be6f5633d0812edfec9d1c70a661457e4d5.tar.gz |
Fix typo
-rwxr-xr-x | test/requests/test-website.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/test-website.py b/test/requests/test-website.py index 06d5b5ca..aa8b7404 100755 --- a/test/requests/test-website.py +++ b/test/requests/test-website.py @@ -36,7 +36,7 @@ def run_all(args_obj, parser): print("") print("Running all tests.") print(args_obj) - assert host_is_online(args_obj.host), f"Could not connect to {host}" + assert host_is_online(args_obj.host), f"Could not connect to {args_obj.host}" link_checker.DO_FAIL = args_obj.fail check_main_web_functionality(args_obj, parser) check_links(args_obj, parser) |