diff options
author | Frederick Muriuki Muriithi | 2022-09-12 05:39:06 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-09-12 05:39:06 +0300 |
commit | 76b1283928f33f7b83e2270fce48d80a0e52b85b (patch) | |
tree | e3edb373f242326636bf3c2108743e95a98f900c | |
parent | a693630f8330a04be0942a3acc27f0028ff7d8d1 (diff) | |
download | genenetwork2-76b1283928f33f7b83e2270fce48d80a0e52b85b.tar.gz |
Pass in missing argument
-rw-r--r-- | test/requests/correlation_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/correlation_tests.py b/test/requests/correlation_tests.py index 84660441..14f9c569 100644 --- a/test/requests/correlation_tests.py +++ b/test/requests/correlation_tests.py @@ -84,7 +84,7 @@ def check_correlations(args_obj, parser): print(f"\tChecking {corr_type} correlations...", end="") for corr_base in corrs_base_data(): try: - corr_type_fn(host) + corr_type_fn(host, corr_base) print(" ok") except AssertionError: print (" fail") |