Skip to content

Commit

Permalink
Nosetests got confused when we added args to the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
allenh1 committed Feb 28, 2018
1 parent c471bfb commit 8d7d4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_get_parser(self):
"""Tests the get_parser function"""
p = get_parser('test parser')
self.assertEqual(p.prog, 'test parser')
ret = p.parse_args()
ret = p.parse_args(None)
self.assertIn('all', ret)
self.assertIn('dry_run', ret)
self.assertIn('only', ret)
Expand Down

0 comments on commit 8d7d4e5

Please # to comment.