diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-12 23:46:22 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-12 23:46:22 -0400 |
commit | 89511934b805999e0c12071750c52c1c45d35536 (patch) | |
tree | cddfae1f628181b67a6d1a965e6c7c1239f81aeb /tests | |
parent | 054508b5edeaef602ee4251bb3828387cb26f582 (diff) | |
download | cleanpath-89511934b805999e0c12071750c52c1c45d35536.tar.gz |
Proper namespace for the header file. Bump version.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_errors.c | 4 | ||||
-rw-r--r-- | tests/test_modes_filter_all.c | 4 | ||||
-rw-r--r-- | tests/test_modes_filter_general.c | 4 | ||||
-rw-r--r-- | tests/test_no_sep_ending.c | 4 |
4 files changed, 8 insertions, 8 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 +} diff --git a/tests/test_modes_filter_all.c b/tests/test_modes_filter_all.c index 7e19242..d57b418 100644 --- a/tests/test_modes_filter_all.c +++ b/tests/test_modes_filter_all.c @@ -1,5 +1,5 @@ #include <stdio.h> -#include "cleanpath.h" +#include "cleanpath/cleanpath.h" #include "framework.h" #define MAX_MODE 3 @@ -98,4 +98,4 @@ int main() { myassert(status == 0, "%d mode(s) failed", status); return 0; -}
\ No newline at end of file +} diff --git a/tests/test_modes_filter_general.c b/tests/test_modes_filter_general.c index 50dec68..45206a4 100644 --- a/tests/test_modes_filter_general.c +++ b/tests/test_modes_filter_general.c @@ -1,4 +1,4 @@ -#include "cleanpath.h" +#include "cleanpath/cleanpath.h" #include "framework.h" #define MAX_MODE 3 @@ -95,4 +95,4 @@ int main() { myassert(status == 0, "%d mode(s) failed", status); return 0; -}
\ No newline at end of file +} diff --git a/tests/test_no_sep_ending.c b/tests/test_no_sep_ending.c index 6b89c2b..2f86270 100644 --- a/tests/test_no_sep_ending.c +++ b/tests/test_no_sep_ending.c @@ -1,4 +1,4 @@ -#include "cleanpath.h" +#include "cleanpath/cleanpath.h" #include "framework.h" int main() { @@ -16,4 +16,4 @@ int main() { len = strlen(result); puts(result); myassert(len && *(result + (len - 1)) != TEST_SEP[0], "Result ends with a separator:\n'%s'", result); -}
\ No newline at end of file +} |