From 385976048582b13a7df761dc4fcc4ec4b2edf5f5 Mon Sep 17 00:00:00 2001 From: Gregory Tsipenyuk Date: Thu, 19 Oct 2023 16:46:20 -0400 Subject: [PATCH] [FOLD] Fix initialization for fillOrKill feature. --- src/test/app/Offer_test.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/test/app/Offer_test.cpp b/src/test/app/Offer_test.cpp index d261b834fd2..e2251ebecb1 100644 --- a/src/test/app/Offer_test.cpp +++ b/src/test/app/Offer_test.cpp @@ -5344,15 +5344,14 @@ class Offer_test : public beast::unit_test::suite FeatureBitset const takerDryOffer{fixTakerDryOfferRemoval}; FeatureBitset const rmSmallIncreasedQOffers{fixRmSmallIncreasedQOffers}; FeatureBitset const immediateOfferKilled{featureImmediateOfferKilled}; - FeatureBitset const fixFillOrKill{fixFillOrKill}; + FeatureBitset const fillOrKill{fixFillOrKill}; testAll(all - takerDryOffer - immediateOfferKilled); testAll(all - flowCross - takerDryOffer - immediateOfferKilled); testAll(all - flowCross - immediateOfferKilled); testAll( - all - rmSmallIncreasedQOffers - immediateOfferKilled - - fixFillOrKill); - testAll(all - fixFillOrKill); + all - rmSmallIncreasedQOffers - immediateOfferKilled - fillOrKill); + testAll(all - fillOrKill); testAll(all); testFalseAssert();