aboutsummaryrefslogtreecommitdiff
path: root/tests/test_errors.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-05-12 23:46:22 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-05-12 23:46:22 -0400
commit89511934b805999e0c12071750c52c1c45d35536 (patch)
treecddfae1f628181b67a6d1a965e6c7c1239f81aeb /tests/test_errors.c
parent054508b5edeaef602ee4251bb3828387cb26f582 (diff)
downloadcleanpath-89511934b805999e0c12071750c52c1c45d35536.tar.gz
Proper namespace for the header file. Bump version.
Diffstat (limited to 'tests/test_errors.c')
-rw-r--r--tests/test_errors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_errors.c b/tests/test_errors.c
index f9d641f..82241ed 100644
--- a/tests/test_errors.c
+++ b/tests/test_errors.c
@@ -1,4 +1,4 @@
-#include "cleanpath.h"
+#include "cleanpath/cleanpath.h"
#include "framework.h"
int main() {
@@ -8,4 +8,4 @@ int main() {
//intentionally bad
myassert(cleanpath_init("good", NULL) == NULL, "cleanpath_init() returned non-NULL on NULL sep\n");
myassert(cleanpath_init(NULL, "good") == NULL, "cleanpath_init() returned non-NULL on NULL path\n");
-} \ No newline at end of file
+}