Skip to content

Commit

Permalink
Fix #133, Use quotes for local includes
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Mar 12, 2021
1 parent 0faa72a commit 0204e2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions unit-test/coveragetest/sample_app_coveragetest_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
* Includes
*/

#include <utassert.h>
#include <uttest.h>
#include <utstubs.h>
#include "utassert.h"
#include "uttest.h"
#include "utstubs.h"

#include <cfe.h>
#include <sample_app_events.h>
#include <sample_app.h>
#include <sample_app_table.h>
#include "cfe.h"
#include "sample_app_events.h"
#include "sample_app.h"
#include "sample_app_table.h"

/*
* Macro to call a function and check its int32 return code
Expand Down
4 changes: 2 additions & 2 deletions unit-test/inc/ut_sample_app.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
* Necessary to include these here to get the definition of the
* "SAMPLE_APP_Data_t" typedef.
*/
#include <sample_app_events.h>
#include <sample_app.h>
#include "sample_app_events.h"
#include "sample_app.h"

/*
* Allow UT access to the global "SAMPLE_APP_Data" object.
Expand Down

0 comments on commit 0204e2d

Please sign in to comment.