mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Rename featureToStrandV2 to fix1373
This commit is contained in:
@@ -159,7 +159,7 @@ public:
|
||||
};
|
||||
testAll({});
|
||||
testAll({featureFlow});
|
||||
testAll({featureFlow, featureToStrandV2});
|
||||
testAll({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -113,7 +113,7 @@ public:
|
||||
{
|
||||
test_convert_all_of_an_asset({});
|
||||
test_convert_all_of_an_asset({featureFlow});
|
||||
test_convert_all_of_an_asset({featureFlow, featureToStrandV2});
|
||||
test_convert_all_of_an_asset({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -146,7 +146,7 @@ public:
|
||||
{
|
||||
testXRPDiscrepancy ({});
|
||||
testXRPDiscrepancy ({featureFlow});
|
||||
testXRPDiscrepancy ({featureFlow, featureToStrandV2});
|
||||
testXRPDiscrepancy ({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -1228,7 +1228,7 @@ struct Flow_test : public beast::unit_test::suite
|
||||
};
|
||||
testWithFeats();
|
||||
testWithFeats(featureFlow);
|
||||
testWithFeats(featureFlow, featureToStrandV2);
|
||||
testWithFeats(featureFlow, fix1373);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -532,7 +532,7 @@ public:
|
||||
};
|
||||
testAll({});
|
||||
testAll({featureFlow});
|
||||
testAll({featureFlow, featureToStrandV2});
|
||||
testAll({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -1923,7 +1923,7 @@ public:
|
||||
};
|
||||
testAll({});
|
||||
testAll({featureFlow});
|
||||
testAll({featureFlow, featureToStrandV2});
|
||||
testAll({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -645,7 +645,7 @@ struct PayStrand_test : public beast::unit_test::suite
|
||||
using RippleCalc = ::ripple::path::RippleCalc;
|
||||
|
||||
ExistingElementPool eep;
|
||||
Env env(*this, features(featureToStrandV2));
|
||||
Env env(*this, features(fix1373));
|
||||
|
||||
auto const closeTime = fix1298Time() +
|
||||
100 * env.closed()->info().closeTimeResolution;
|
||||
@@ -1264,7 +1264,7 @@ struct PayStrand_test : public beast::unit_test::suite
|
||||
auto const USD = gw["USD"];
|
||||
auto const EUR = gw["EUR"];
|
||||
|
||||
if (hasFeature(featureToStrandV2, fs))
|
||||
if (hasFeature(fix1373, fs))
|
||||
{
|
||||
Env env(*this, features(fs));
|
||||
env.fund(XRP(10000), alice, bob, gw);
|
||||
@@ -1363,7 +1363,7 @@ struct PayStrand_test : public beast::unit_test::suite
|
||||
|
||||
auto const expectedResult = [&] {
|
||||
if (hasFeature(featureFlow, fs) &&
|
||||
!hasFeature(featureToStrandV2, fs))
|
||||
!hasFeature(fix1373, fs))
|
||||
return tesSUCCESS;
|
||||
return temBAD_PATH_LOOP;
|
||||
}();
|
||||
@@ -1404,12 +1404,12 @@ struct PayStrand_test : public beast::unit_test::suite
|
||||
{
|
||||
testAllPairs();
|
||||
testToStrand({featureFlow});
|
||||
testToStrand({featureFlow, featureToStrandV2});
|
||||
testToStrand({featureFlow, fix1373});
|
||||
testRIPD1373({});
|
||||
testRIPD1373({featureFlow, featureToStrandV2});
|
||||
testRIPD1373({featureFlow, fix1373});
|
||||
testLoop({});
|
||||
testLoop({featureFlow});
|
||||
testLoop({featureFlow, featureToStrandV2});
|
||||
testLoop({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -77,7 +77,7 @@ struct SetAuth_test : public beast::unit_test::suite
|
||||
{
|
||||
testAuth({});
|
||||
testAuth({featureFlow});
|
||||
testAuth({featureFlow, featureToStrandV2});
|
||||
testAuth({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -508,7 +508,7 @@ public:
|
||||
};
|
||||
testWithFeatures({});
|
||||
testWithFeatures({featureFlow});
|
||||
testWithFeatures({featureFlow, featureToStrandV2});
|
||||
testWithFeatures({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ struct BookDirs_test : public beast::unit_test::suite
|
||||
void run() override
|
||||
{
|
||||
test_bookdir({});
|
||||
test_bookdir({featureFlow, featureToStrandV2});
|
||||
test_bookdir({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -344,7 +344,7 @@ public:
|
||||
testReserve(fs);
|
||||
};
|
||||
testAll({});
|
||||
testAll({featureFlow, featureToStrandV2});
|
||||
testAll({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -154,7 +154,7 @@ public:
|
||||
run() override
|
||||
{
|
||||
testGWB({});
|
||||
testGWB({featureFlow, featureToStrandV2});
|
||||
testGWB({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -219,7 +219,7 @@ public:
|
||||
};
|
||||
withFeatsTests({});
|
||||
withFeatsTests({featureFlow});
|
||||
withFeatsTests({featureFlow, featureToStrandV2});
|
||||
withFeatsTests({featureFlow, fix1373});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user