Skip to content

Commit

Permalink
[FOLD] Fix initialization for fillOrKill feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatcam committed Oct 19, 2023
1 parent c7c6e96 commit 3859760
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/test/app/Offer_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 3859760

Please sign in to comment.