mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
test: Run unit tests regardless of 'Supported' amendment status (#5537)
This commit is contained in:
@@ -1194,8 +1194,8 @@ struct Flow_test : public beast::unit_test::suite
|
||||
{
|
||||
auto const feats = [&withFix]() -> FeatureBitset {
|
||||
if (withFix)
|
||||
return supported_amendments();
|
||||
return supported_amendments() - FeatureBitset{fix1781};
|
||||
return testable_amendments();
|
||||
return testable_amendments() - FeatureBitset{fix1781};
|
||||
}();
|
||||
{
|
||||
// Payment path starting with XRP
|
||||
@@ -1332,7 +1332,7 @@ struct Flow_test : public beast::unit_test::suite
|
||||
testRIPD1449();
|
||||
|
||||
using namespace jtx;
|
||||
auto const sa = supported_amendments();
|
||||
auto const sa = testable_amendments();
|
||||
testWithFeats(sa - featurePermissionedDEX);
|
||||
testWithFeats(sa);
|
||||
testEmptyStrand(sa);
|
||||
@@ -1345,7 +1345,7 @@ struct Flow_manual_test : public Flow_test
|
||||
run() override
|
||||
{
|
||||
using namespace jtx;
|
||||
auto const all = supported_amendments();
|
||||
auto const all = testable_amendments();
|
||||
FeatureBitset const f1513{fix1513};
|
||||
FeatureBitset const permDex{featurePermissionedDEX};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user