Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/mocking_utils/filesystem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#include "rcutils/macros.h"

#include "patch.hpp"
#include "./patch.hpp"

namespace mocking_utils
{
Expand Down
2 changes: 1 addition & 1 deletion test/mocking_utils/patch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "mimick/mimick.h"
#include "rcutils/macros.h"

#include "remove_noexcept.hpp"
#include "./remove_noexcept.hpp"

namespace mocking_utils
{
Expand Down
4 changes: 2 additions & 2 deletions test/test_logging_macros.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ TEST_F(TestLoggingMacros, test_logging_skipfirst) {
}

TEST_F(TestLoggingMacros, test_logging_throttle) {
using namespace std::chrono_literals;
using std::chrono_literals::operator""ms;
const auto start = std::chrono::system_clock::now();
const auto throttle_time = 200ms;
bool first = true;
Expand Down Expand Up @@ -177,7 +177,7 @@ TEST_F(TestLoggingMacros, test_logging_throttle) {
}

TEST_F(TestLoggingMacros, test_logging_skipfirst_throttle) {
using namespace std::chrono_literals;
using std::chrono_literals::operator""ms;
const auto start = std::chrono::system_clock::now();
const auto throttle_time = 200ms;
bool first = true;
Expand Down