Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
clauswilke committed Apr 5, 2020
1 parent 2c65beb commit ed5b509
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_PeptideBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit ed5b509

Please sign in to comment.