From ed5b509dd78ab21fa163ecde6bfbacf10ac3eab0 Mon Sep 17 00:00:00 2001 From: Claus Wilke Date: Sun, 5 Apr 2020 15:56:38 -0500 Subject: [PATCH] code formatting --- tests/test_PeptideBuilder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_PeptideBuilder.py b/tests/test_PeptideBuilder.py index ca592d6..c26bbfc 100644 --- a/tests/test_PeptideBuilder.py +++ b/tests/test_PeptideBuilder.py @@ -29,7 +29,7 @@ def compare_to_reference(structure, ref_file) -> bool: if not len(res) == len(ref_res): return False - result = True + result = True for r1, r2 in zip(res, ref_res): result = result and compare_residues(r1, r2) @@ -90,7 +90,7 @@ def test_make_extended_structure(): """ structure = PeptideBuilder.make_extended_structure("ACDEFGHIKLMNPQRSTVWY") assert compare_to_reference(structure, "extended.pdb") - + # test unit tests by comparing structures that don't match structure = PeptideBuilder.make_extended_structure("ACDEFGHIKLMNPQRSTVW") assert not compare_to_reference(structure, "extended.pdb")