diff options
Diffstat (limited to 'tests/parsing.c')
-rw-r--r-- | tests/parsing.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/parsing.c b/tests/parsing.c index 2b953db..3c321c6 100644 --- a/tests/parsing.c +++ b/tests/parsing.c @@ -9,7 +9,7 @@ void test_parsing(const char *test_dir) { sprintf(parsing_dir, "%s/parsing", test_dir); DIR *dir = opendir(parsing_dir); if (!dir) { - test_fail("Couldn't open test directory %s", test_dir); + test_fail("Couldn't open test directory %s", parsing_dir); return; } struct dirent *ent; @@ -64,5 +64,4 @@ void test_parsing(const char *test_dir) { } } free(parsing_dir); -// pom_conf *conf = pom_load_path("../tests"); } |