summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-04-09 19:39:46 -0400
committerjakob <jakob@memeware.net>2017-04-09 19:39:46 -0400
commit411a40b5c077ca69e34c7016428eb9d856f8fe73 (patch)
treecff2ee6b0f6e4144a0041c53adfc8c542088781c /test
parent8a1fcff16e9ba8674c72011da7da5ad1bc133168 (diff)
Automated style checking and fixed unit tests.
Diffstat (limited to 'test')
-rw-r--r--test/test_cli.c2
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;
}