Skip to content

Commit

Permalink
auction_price macro test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-nsk committed Sep 11, 2023
1 parent b162de8 commit 789663a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,10 @@ public void makeBidsShouldReturnBidWithResolvedMacros() throws JsonProcessingExc
assertThat(result.getValue())
.extracting(BidderBid::getBid)
.extracting(Bid::getNurl, Bid::getAdm)
.containsExactly(tuple("nurl:10", "adm:10", "nurl:10", "adm:10", "nurl:10", "adm:10"));
.containsExactly(
tuple("nurl:10", "adm:10"),
tuple("nurl:10", "adm:10"),
tuple("nurl:10", "adm:10"));
}

private static BidRequest givenBidRequest() {
Expand Down

0 comments on commit 789663a

Please sign in to comment.