diff options
| author | Dylan Araps <[email protected]> | 2017-07-23 23:16:09 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-07-23 23:16:09 +1000 |
| commit | 6677cad478c873c4776a385f2423a9ea4b1dcf28 (patch) | |
| tree | 5fbcba855a312d245b11f594fa641491540aa010 | |
| parent | tests: test main() (diff) | |
| download | pywal-6677cad478c873c4776a385f2423a9ea4b1dcf28.tar.xz pywal-6677cad478c873c4776a385f2423a9ea4b1dcf28.zip | |
tests: Fix conflict test
| -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): |