diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 23:16:09 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 23:16:09 +1000 |
| commit | 6677cad478c873c4776a385f2423a9ea4b1dcf28 (patch) | |
| tree | 5fbcba855a312d245b11f594fa641491540aa010 /tests/test_main.py | |
| parent | 84b134a50da5995b41ddaff42e2b7a92319236d8 (diff) | |
tests: Fix conflict test
Diffstat (limited to 'tests/test_main.py')
| -rw-r--r-- | tests/test_main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_main.py b/tests/test_main.py index b3ea4e3..321f565 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -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): |
