diff options
author | 2019-10-08 12:21:31 +0300 | |
---|---|---|
committer | 2019-10-08 12:21:31 +0300 | |
commit | 2ccaaf91b592d66363794405376b9de0365cc78a (patch) | |
tree | a11385cd9f61c49fd76dfac0a6dd450537be3d3a /test/uuid.c | |
parent | 5a50d76eed4e9b4e4c86b82ee880e628ea9eb480 (diff) | |
download | librin-2ccaaf91b592d66363794405376b9de0365cc78a.tar.gz librin-2ccaaf91b592d66363794405376b9de0365cc78a.tar.bz2 librin-2ccaaf91b592d66363794405376b9de0365cc78a.zip |
tests: remove useless prefixes.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'test/uuid.c')
-rw-r--r-- | test/uuid.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/uuid.c b/test/uuid.c index 32ead51..0ff5344 100644 --- a/test/uuid.c +++ b/test/uuid.c @@ -23,12 +23,12 @@ #include "test.h" #include "rin/uuid.h" -static int rin_uuid_format_macro_test(void); +static int uuid_format_macro_test(void); int uuid_test(char *testname) { static const struct test tests[] = { - {"formatmacro", rin_uuid_format_macro_test} }; + {"formatmacro", uuid_format_macro_test} }; size_t i; for (i = 0; i < arrlen(tests); ++i) { @@ -40,7 +40,7 @@ int uuid_test(char *testname) return EXIT_FAILURE; } -static int rin_uuid_format_macro_test(void) +static int uuid_format_macro_test(void) { int ret; size_t i; |