diff options
Diffstat (limited to 'asl/testing/testing.hpp')
-rw-r--r-- | asl/testing/testing.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/asl/testing/testing.hpp b/asl/testing/testing.hpp index 849c4fd..3b4a421 100644 --- a/asl/testing/testing.hpp +++ b/asl/testing/testing.hpp @@ -4,7 +4,7 @@ #pragma once -#include "asl/base/utility.hpp" +#include "asl/base/meta.hpp" namespace asl::testing { @@ -35,7 +35,8 @@ struct Test } // namespace asl::testing #define ASL_TEST(CASE) \ - static void asl_test_fn_##CASE(); \ + static void asl_test_fn_##CASE(); /* NOLINT */ \ + /* NOLINTNEXTLINE */ \ static ::asl::testing::Test asl_test_##CASE( \ #CASE, \ asl_test_fn_##CASE); \ |