refactor: Rename static constants (#7120)

Co-authored-by: Bart <bthomee@users.noreply.github.com>
This commit is contained in:
Alex Kremer
2026-05-15 16:32:19 +01:00
committed by GitHub
parent 028f0cb5da
commit 5b6e8b6f93
648 changed files with 6582 additions and 6686 deletions

View File

@@ -21,7 +21,7 @@ struct TestJSONTxt
bool const expectFail;
};
static TestJSONTxt const kTEST_ARRAY[] = {
static TestJSONTxt const kTestArray[] = {
// Valid SignerEntry
{.txt = R"({
@@ -162,7 +162,7 @@ public:
// Instantiate a jtx::Env so debugLog writes are exercised.
test::jtx::Env const env(*this);
for (auto const& test : kTEST_ARRAY)
for (auto const& test : kTestArray)
{
json::Value req;
json::Reader().parse(test.txt, req);