diff options
| author | jakob <jakob@memeware.net> | 2017-04-09 19:39:46 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-04-09 19:39:46 -0400 |
| commit | 411a40b5c077ca69e34c7016428eb9d856f8fe73 (patch) | |
| tree | cff2ee6b0f6e4144a0041c53adfc8c542088781c /test | |
| parent | 8a1fcff16e9ba8674c72011da7da5ad1bc133168 (diff) | |
Automated style checking and fixed unit tests.
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_cli.c b/test/test_cli.c index c4b42f4..5a5f0db 100644 --- a/test/test_cli.c +++ b/test/test_cli.c @@ -26,7 +26,7 @@ char *test_out_path(void) { char *argv[4] = {"nekopack", "-o", "/tmp", "a.xp3"}; - struct params p = parse_args(3, argv); + struct params p = parse_args(4, argv); mu_assert("Trailing slash not appended to path", !strcmp(p.out, "/tmp/")); return NULL; } |