Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFZ committed May 30, 2024
1 parent e077563 commit c5e00be
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,11 @@ await this.Client.PostMsgpack<CharaLimitBreakAndBuildupManaResponse>(
.Be(manaPointNum - 2800 - 3400 - 5200 - 3400 - 2800);

response
.UpdateDataList.MaterialList.Should()
.ContainEquivalentOf(new MaterialList(Materials.WaterOrb, mat1Quantity - 15 - 25))
.And.ContainEquivalentOf(new MaterialList(Materials.StreamOrb, mat2Quantity - 4 - 5))
.UpdateDataList.MaterialList.Should() // - LimitBreak1 - LimitBreak2 - ManaCircleOrbs
.ContainEquivalentOf(new MaterialList(Materials.WaterOrb, mat1Quantity - 8 - 15 - 25))
.And.ContainEquivalentOf(
new MaterialList(Materials.StreamOrb, mat2Quantity - 1 - 4 - 5)
)
.And.ContainEquivalentOf(new MaterialList(Materials.DelugeOrb, mat3Quantity - 1 - 1));
}

Expand Down

0 comments on commit c5e00be

Please sign in to comment.