starting fixing a test

This commit is contained in:
Clément Le Bihan
2020-05-23 19:13:39 +02:00
parent eed64a10e5
commit 42d24f8595
+2 -2
View File
@@ -15,7 +15,7 @@
Test(get_special_arg_at, at_arg)
{
char **argv = split_str(strdup("source file a b c"), ' ');
char **argv = split_str(strdup("source file a b c"), (char *[]) {" "});
int argv_len = 5;
char *res = NULL;
@@ -26,7 +26,7 @@ Test(get_special_arg_at, at_arg)
Test(get_special_arg_star, at_arg)
{
char **argv = split_str(strdup("source file a b c"), ' ');
char **argv = split_str(strdup("source file a b c"), (char *[]) {" "});
int argv_len = 5;
char *res = NULL;