Skip to content

Commit

Permalink
Metax: Update bidder (#3631)
Browse files Browse the repository at this point in the history
  • Loading branch information
przemkaczmarek committed Jan 7, 2025
1 parent c0a5165 commit 8af285e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ public void makeBidsShouldReturnVideoInfoWithDuration() throws JsonProcessingExc
// given
final BidderCall<BidRequest> httpCall = givenHttpCall(givenBidResponse(
givenBid(bid -> bid.dur(1).mtype(2))));
System.out.println("HTTP Response Body: " + httpCall.getResponse().getBody());

// when
final Result<List<BidderBid>> result = target.makeBids(httpCall, null);
Expand Down Expand Up @@ -409,7 +408,7 @@ private static String givenBidResponse(Bid... bids) throws JsonProcessingExcepti
.build());
}

private static Bid givenBid(UnaryOperator<Bid.BidBuilder> bidCustomizer){
private static Bid givenBid(UnaryOperator<Bid.BidBuilder> bidCustomizer) {
return bidCustomizer.apply(Bid.builder()).build();
}
}

0 comments on commit 8af285e

Please sign in to comment.