Skip to content

Commit aff9c65

Browse files
authored
Merge pull request #134 from skliper/fix133-include_quotes
Fix #133, Use quotes for local includes
2 parents 0faa72a + 0204e2d commit aff9c65

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

unit-test/coveragetest/sample_app_coveragetest_common.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
* Includes
3333
*/
3434

35-
#include <utassert.h>
36-
#include <uttest.h>
37-
#include <utstubs.h>
35+
#include "utassert.h"
36+
#include "uttest.h"
37+
#include "utstubs.h"
3838

39-
#include <cfe.h>
40-
#include <sample_app_events.h>
41-
#include <sample_app.h>
42-
#include <sample_app_table.h>
39+
#include "cfe.h"
40+
#include "sample_app_events.h"
41+
#include "sample_app.h"
42+
#include "sample_app_table.h"
4343

4444
/*
4545
* Macro to call a function and check its int32 return code

unit-test/inc/ut_sample_app.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
* Necessary to include these here to get the definition of the
4040
* "SAMPLE_APP_Data_t" typedef.
4141
*/
42-
#include <sample_app_events.h>
43-
#include <sample_app.h>
42+
#include "sample_app_events.h"
43+
#include "sample_app.h"
4444

4545
/*
4646
* Allow UT access to the global "SAMPLE_APP_Data" object.

0 commit comments

Comments
 (0)