Rename featureToStrandV2 to fix1373

This commit is contained in:
seelabs
2017-04-14 08:53:11 -04:00
committed by Nik Bougalis
parent 068889e5b1
commit 2680b78b5b
18 changed files with 24 additions and 24 deletions

View File

@@ -159,7 +159,7 @@ public:
};
testAll({});
testAll({featureFlow});
testAll({featureFlow, featureToStrandV2});
testAll({featureFlow, fix1373});
}
};

View File

@@ -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});
}
};

View File

@@ -146,7 +146,7 @@ public:
{
testXRPDiscrepancy ({});
testXRPDiscrepancy ({featureFlow});
testXRPDiscrepancy ({featureFlow, featureToStrandV2});
testXRPDiscrepancy ({featureFlow, fix1373});
}
};

View File

@@ -1228,7 +1228,7 @@ struct Flow_test : public beast::unit_test::suite
};
testWithFeats();
testWithFeats(featureFlow);
testWithFeats(featureFlow, featureToStrandV2);
testWithFeats(featureFlow, fix1373);
}
};

View File

@@ -532,7 +532,7 @@ public:
};
testAll({});
testAll({featureFlow});
testAll({featureFlow, featureToStrandV2});
testAll({featureFlow, fix1373});
}
};

View File

@@ -1923,7 +1923,7 @@ public:
};
testAll({});
testAll({featureFlow});
testAll({featureFlow, featureToStrandV2});
testAll({featureFlow, fix1373});
}
};

View File

@@ -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});
}
};

View File

@@ -77,7 +77,7 @@ struct SetAuth_test : public beast::unit_test::suite
{
testAuth({});
testAuth({featureFlow});
testAuth({featureFlow, featureToStrandV2});
testAuth({featureFlow, fix1373});
}
};

View File

@@ -508,7 +508,7 @@ public:
};
testWithFeatures({});
testWithFeatures({featureFlow});
testWithFeatures({featureFlow, featureToStrandV2});
testWithFeatures({featureFlow, fix1373});
}
};

View File

@@ -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});
}
};

View File

@@ -344,7 +344,7 @@ public:
testReserve(fs);
};
testAll({});
testAll({featureFlow, featureToStrandV2});
testAll({featureFlow, fix1373});
}
};

View File

@@ -154,7 +154,7 @@ public:
run() override
{
testGWB({});
testGWB({featureFlow, featureToStrandV2});
testGWB({featureFlow, fix1373});
}
};

View File

@@ -219,7 +219,7 @@ public:
};
withFeatsTests({});
withFeatsTests({featureFlow});
withFeatsTests({featureFlow, featureToStrandV2});
withFeatsTests({featureFlow, fix1373});
}
};