From 544f0992814f5eaf336f5d6586dec2821b95674f Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Wed, 14 Jun 2017 08:09:24 +0200 Subject: [PATCH] forgot to remove print statement --- modules/mol/alg/tests/test_accessibility.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/mol/alg/tests/test_accessibility.py b/modules/mol/alg/tests/test_accessibility.py index acaae0fd8..748b4d8c1 100644 --- a/modules/mol/alg/tests/test_accessibility.py +++ b/modules/mol/alg/tests/test_accessibility.py @@ -3,6 +3,7 @@ import unittest import os from ost.bindings import naccess + class AccessibilityContainer: def __init__(self): self.overall_acc = None @@ -62,7 +63,6 @@ def Compare(acc_one, acc_two): return False for a,b in zip(acc_one.per_atom_acc, acc_two.per_atom_acc): if abs(a - b) > 0.01: - print 'b' return False # let's check the per atom accessibility when only single chains @@ -73,7 +73,6 @@ def Compare(acc_one, acc_two): for a,b in zip(acc_one.per_atom_acc_single_chain, \ acc_two.per_atom_acc_single_chain): if abs(a - b) > 0.01: - print 'b' return False return True -- GitLab