Skip to content

Commit

Permalink
Fix acceptance test
Browse files Browse the repository at this point in the history
  • Loading branch information
camillescott committed Dec 29, 2015
1 parent e5d35d4 commit 6ffaa90
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion dammit/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def setUp(self):
from itertools import count
gff.ID_GEN = count()


def test_dammit_version(self):
'''Test the dammit --version command.
'''
Expand Down
2 changes: 1 addition & 1 deletion dammit/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def runscript(scriptname, args, in_directory=None,
if status != 0 and not fail_ok:
#print(out)
#print(err)
assert False #, (status, out, err)
assert False, (status, out, err)

return status, out, err

Expand Down

0 comments on commit 6ffaa90

Please sign in to comment.