aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-09-12 05:50:16 +0300
committerFrederick Muriuki Muriithi2022-09-12 05:50:16 +0300
commit48655470c81c226a86829f8015beb81a8bd02850 (patch)
tree5657f8cbb813b997a5bbe4f77b7c32dfcf94beca
parentd46e8d0a51794d7aa822dadfc30298684f4c6167 (diff)
downloadgenenetwork2-48655470c81c226a86829f8015beb81a8bd02850.tar.gz
Clean up print out.
-rw-r--r--test/requests/correlation_tests.py2
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: