diff --git a/tests/structural/test_cluster_analysis.py b/tests/structural/test_cluster_analysis.py index 74ba9e3..2a21bdb 100644 --- a/tests/structural/test_cluster_analysis.py +++ b/tests/structural/test_cluster_analysis.py @@ -39,10 +39,6 @@ def compare_generated_xyz_files(self, pattern): assert len(xyz_files_test) == len(xyz_files), "Number of XYZ files mismatch." for file1, file2 in zip(xyz_files_test, xyz_files): are_same = filecmp.cmp(file1, file2, shallow=False) - print(f"Comparing {file1} and {file2}") - with open(file1, 'r') as file: - for line in file: - print(line, end='') assert are_same, f"{file1} and {file2} are not the same." def test_get_clusters(self, benchmark):