diff options
author | Frederick Muriuki Muriithi | 2022-09-12 05:50:16 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-09-12 05:50:16 +0300 |
commit | 48655470c81c226a86829f8015beb81a8bd02850 (patch) | |
tree | 5657f8cbb813b997a5bbe4f77b7c32dfcf94beca | |
parent | d46e8d0a51794d7aa822dadfc30298684f4c6167 (diff) | |
download | genenetwork2-48655470c81c226a86829f8015beb81a8bd02850.tar.gz |
Clean up print out.
-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 aa1b7b16..5115ba08 100644 --- a/test/requests/correlation_tests.py +++ b/test/requests/correlation_tests.py @@ -82,9 +82,9 @@ def check_correlations(args_obj, parser): host = args_obj.host failure = False for corr_type, corr_type_fn in corr_type_fns.items(): - print(f"\tChecking {corr_type} correlations...", end="") for corr_base in corrs_base_data(): try: + print(f"\tChecking {corr_type} correlations...", end="") corr_type_fn(host, corr_base) print(" ok") except AssertionError: |