feat: Enable and rename fixSecurity3_1_3 to fixCleanup3_1_3 (#7128)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vito Tumas
2026-05-13 11:42:34 +02:00
committed by GitHub
parent 170eb5e588
commit 6340c986c9
24 changed files with 101 additions and 98 deletions

View File

@@ -1036,7 +1036,7 @@ struct Credentials_test : public beast::unit_test::Suite
void
testRemoveExpiredCorruption(FeatureBitset features)
{
bool const fixEnabled = features[fixSecurity3_1_3];
bool const fixEnabled = features[fixCleanup3_1_3];
testcase(
"removeExpired ignores deleteSLE failure " +
(fixEnabled ? std::string(" after fix") : std::string(" before fix")));
@@ -1164,8 +1164,8 @@ struct Credentials_test : public beast::unit_test::Suite
testFlags(all);
testRPC();
testRemoveExpiredCorruption(all - fixSecurity3_1_3);
testRemoveExpiredCorruption(all | fixSecurity3_1_3);
testRemoveExpiredCorruption(all - fixCleanup3_1_3);
testRemoveExpiredCorruption(all | fixCleanup3_1_3);
}
};