tests: Fix conflict test

This commit is contained in:
Dylan Araps 2017-07-23 23:16:09 +10:00
parent 84b134a50d
commit 6677cad478

View File

@ -20,7 +20,7 @@ class TestMain(unittest.TestCase):
def test_conflict(self):
"""> Test arg parsing (-i, -f)"""
with self.assertRaises(SystemExit):
args = __main__.get_args(["-i", "-f"])
args = __main__.get_args(["-i", "file", "-f", "file"])
__main__.process_args(args)
def test_version(self):