diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-20 15:22:27 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-20 15:22:27 -0500 |
commit | 46fb0eb96e8efd285c2a0cccf699862ed21717ed (patch) | |
tree | 2107aa0fa9a382c006f73d5cdcdd18b586d4d229 /tests | |
parent | 6ebad2aac3ba2f0d7ff5e37c5db4e5b9549247e2 (diff) |
Rename from simply obd2 to more general UDS (unified diagnostics).
Fixed #1.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/common.c | 2 | ||||
-rw-r--r-- | tests/test_core.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/common.c b/tests/common.c index f79b8ad6..8d7dd50d 100644 --- a/tests/common.c +++ b/tests/common.c @@ -1,4 +1,4 @@ -#include <obd2/obd2.h> +#include <uds/uds.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> diff --git a/tests/test_core.c b/tests/test_core.c index 1ab94094..489e1740 100644 --- a/tests/test_core.c +++ b/tests/test_core.c @@ -1,4 +1,4 @@ -#include <obd2/obd2.h> +#include <uds/uds.h> #include <check.h> #include <stdint.h> #include <stdio.h> @@ -261,7 +261,7 @@ START_TEST (test_negative_response) END_TEST Suite* testSuite(void) { - Suite* s = suite_create("obd2"); + Suite* s = suite_create("uds"); TCase *tc_core = tcase_create("core"); tcase_add_checked_fixture(tc_core, setup, NULL); tcase_add_test(tc_core, test_send_diag_request); |