From 086d95aa2cf2904c0cfa2a88e261b3786bece85a Mon Sep 17 00:00:00 2001 From: Shawn Xie Date: Mon, 4 May 2026 18:03:51 -0400 Subject: [PATCH] exclude constness for ConfidentialTransfer test file --- src/test/app/ConfidentialTransfer_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/app/ConfidentialTransfer_test.cpp b/src/test/app/ConfidentialTransfer_test.cpp index cd719d641b..4211474467 100644 --- a/src/test/app/ConfidentialTransfer_test.cpp +++ b/src/test/app/ConfidentialTransfer_test.cpp @@ -57,6 +57,7 @@ namespace xrpl { +// NOLINTBEGIN(misc-const-correctness) class ConfidentialTransfer_test : public beast::unit_test::Suite { // Offset where the bulletproof begins in a send proof blob. @@ -2076,7 +2077,6 @@ class ConfidentialTransfer_test : public beast::unit_test::Suite using namespace test::jtx; Env env{*this, features}; Account const alice("alice"), bob("bob"), carol("carol"); - // NOLINTNEXTLINE(misc-const-correctness) ConfidentialEnv confEnv{ env, alice, @@ -9820,6 +9820,7 @@ public: testWithFeats(all); } }; +// NOLINTEND(misc-const-correctness) BEAST_DEFINE_TESTSUITE(ConfidentialTransfer, app, xrpl); } // namespace xrpl