exclude constness for ConfidentialTransfer test file

This commit is contained in:
Shawn Xie
2026-05-04 18:03:51 -04:00
parent 6960e3a234
commit 086d95aa2c

View File

@@ -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