diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 13:52:32 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 13:52:32 -0400 |
commit | ee88497b4451225c3140f56d98ebcbc166175407 (patch) | |
tree | 39cd720c4840c2872fb065088b91658ef6d8d3d1 /tests/parsing.c | |
parent | 969bf523b7039c7038b66edde5776278c27941ac (diff) |
Errors tests; fix some non-errors
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"); } |