summaryrefslogtreecommitdiffstats
path: root/library/cpp/testing
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/testing')
-rw-r--r--library/cpp/testing/unittest/registar.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/cpp/testing/unittest/registar.h b/library/cpp/testing/unittest/registar.h
index c6c1281b4db..b3b206ec5c1 100644
--- a/library/cpp/testing/unittest/registar.h
+++ b/library/cpp/testing/unittest/registar.h
@@ -714,6 +714,7 @@ public: \
//values
#define UNIT_ASSERT_VALUES_EQUAL_IMPL(A, B, C, EQflag, EQstr, NEQstr) \
do { \
+ /* NOLINTBEGIN(bugprone-reserved-identifier, readability-identifier-naming) */ \
TString _as; \
TString _bs; \
TString _asInd; \
@@ -727,6 +728,7 @@ public: \
} \
UNIT_FAIL_IMPL("assertion failed", failMsg); \
} \
+ /* NOLINTEND(bugprone-reserved-identifier, readability-identifier-naming) */ \
} while (false)
#define UNIT_ASSERT_VALUES_EQUAL_C(A, B, C) \