Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stefdoerr committed Mar 4, 2024
1 parent ead785f commit 75d1fdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion htmd/builder/amber.py
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,9 @@ def _fix_mol(bn, mol, repl):
tleap_installed = False


@unittest.skip(not tleap_installed, "teLeap is not installed. Cannot test amber.build")
@unittest.skipIf(
not tleap_installed, "teLeap is not installed. Cannot test amber.build"
)
class _TestAmberBuild(unittest.TestCase):
currentResult = None # holds last result object passed to run method

Expand Down

0 comments on commit 75d1fdf

Please sign in to comment.