Skip to content

Commit

Permalink
Move testing header to test directory
Browse files Browse the repository at this point in the history
  • Loading branch information
marcransome committed Dec 7, 2024
1 parent 4411fbc commit 6c691cb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <stdio.h>

#ifdef UNIT_TESTING
#include "testing.h"
#include "../test/testing.h"
#endif

static const char *
Expand Down
2 changes: 1 addition & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include <unistd.h>

#ifdef UNIT_TESTING
#include "testing.h"
#include "../test/testing.h"
#endif

const int subsystem_len = 257;
Expand Down
2 changes: 1 addition & 1 deletion src/flog.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "config.h"

#ifdef UNIT_TESTING
#include "testing.h"
#include "../test/testing.h"
#endif

#define OS_LOG_FORMAT_PUBLIC "%{public}s"
Expand Down
File renamed without changes.

0 comments on commit 6c691cb

Please sign in to comment.