@@ -137,7 +137,7 @@ public void makeBidsShouldReturnBannerBidWhenMtypeIs1() throws JsonProcessingExc
137137 // then
138138 assertThat (result .getErrors ()).isEmpty ();
139139 assertThat (result .getValue ()).hasSize (1 )
140- .containsExactly (BidderBid .of (bannerBid , BidType .banner , "adagio" , " USD" ));
140+ .containsExactly (BidderBid .of (bannerBid , BidType .banner , "USD" ));
141141 }
142142
143143 @ Test
@@ -154,7 +154,6 @@ public void makeBidsShouldReturnVideoBidWhenMtypeIs2() throws JsonProcessingExce
154154 assertThat (result .getValue ()).hasSize (1 )
155155 .containsExactly (BidderBid .builder ()
156156 .type (BidType .video )
157- .seat ("adagio" )
158157 .bidCurrency ("USD" )
159158 .bid (videoBid )
160159 .videoInfo (ExtBidPrebidVideo .of (10 , "cat" ))
@@ -173,7 +172,7 @@ public void makeBidsShouldReturnNativeBidWhenMtypeIs4() throws JsonProcessingExc
173172 // then
174173 assertThat (result .getErrors ()).isEmpty ();
175174 assertThat (result .getValue ()).hasSize (1 )
176- .containsExactly (BidderBid .of (nativeBid , BidType .xNative , "adagio" , " USD" ));
175+ .containsExactly (BidderBid .of (nativeBid , BidType .xNative , "USD" ));
177176 }
178177
179178 @ Test
@@ -232,7 +231,7 @@ private static Bid givenBid(Integer mtype, UnaryOperator<ExtBidPrebid.ExtBidPreb
232231 private static String givenBidResponse (Bid ... bids ) throws JsonProcessingException {
233232 return mapper .writeValueAsString (BidResponse .builder ()
234233 .cur ("USD" )
235- .seatbid (singletonList (SeatBid .builder ().seat ( "adagio" ). bid (List .of (bids )).build ()))
234+ .seatbid (singletonList (SeatBid .builder ().bid (List .of (bids )).build ()))
236235 .build ());
237236 }
238237
0 commit comments