Skip to content

Commit 0f27474

Browse files
committed
last tests
1 parent f1a13c5 commit 0f27474

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/test/java/org/prebid/server/bidder/generic/GenericBidderTest.java

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -167,23 +167,6 @@ public void makeBidsShouldReturnAudioBidIfAudioIsPresentInRequestImp() throws Js
167167
.containsExactly(BidderBid.of(givenBid(), audio, null));
168168
}
169169

170-
@Test
171-
public void makeBidsShouldReturnBannerBidIfBannerAndVideoAndAudioAndNativeIsAbsentInRequestImp()
172-
throws JsonProcessingException {
173-
// given
174-
final BidderCall<BidRequest> httpCall = givenHttpCall(
175-
givenBidRequest(identity()),
176-
mapper.writeValueAsString(givenBidResponse(impBuilder -> impBuilder.impid("123"))));
177-
178-
// when
179-
final Result<List<BidderBid>> result = target.makeBids(httpCall, null);
180-
181-
// then
182-
assertThat(result.getErrors()).isEmpty();
183-
assertThat(result.getValue())
184-
.containsExactly(BidderBid.of(givenBid(), banner, null));
185-
}
186-
187170
private static BidRequest givenBidRequest(UnaryOperator<Imp.ImpBuilder> impCustomizer) {
188171
return givenBidRequest(identity(), impCustomizer);
189172
}

0 commit comments

Comments
 (0)