Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public class RubiconBidder implements Bidder<BidRequest> {
private static final String SEGTAX = "segtax";

private static final Set<Integer> USER_SEGTAXES = Set.of(4);
private static final Set<Integer> SITE_SEGTAXES = Set.of(1, 2, 5, 6);
private static final Set<Integer> SITE_SEGTAXES = Set.of(1, 2, 5, 6, 7);

private static final Set<String> STYPE_TO_REMOVE = new HashSet<>(Arrays.asList(PPUID_STYPE, SHA256EMAIL_STYPE,
DMP_STYPE));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ public void makeHttpRequestsShouldFillSiteExtRpWithSegtaxValuesWithNoMoreThanHun
givenDataWithSegments(3, "thirdSegmentId_", 3),
givenDataWithSegments(4, "fourthSegmentId_", 2),
givenDataWithSegments(5, "fifthSegmentId_", 1),
givenDataWithSegments(6, "sixthSegmentId_", 100),
givenDataWithSegments(6, "sixthSegmentId_", 7),
givenDataWithSegments(7, "seventhSegmentId_", 100)))
.build())
.build()),
Expand All @@ -1177,7 +1177,8 @@ public void makeHttpRequestsShouldFillSiteExtRpWithSegtaxValuesWithNoMoreThanHun
IntStream.range(1, 6).mapToObj(i -> "firstSegmentId_" + i),
IntStream.range(1, 5).mapToObj(i -> "secondSegmentId_" + i),
IntStream.range(1, 2).mapToObj(i -> "fifthSegmentId_" + i),
IntStream.range(1, 86).mapToObj(i -> "sixthSegmentId_" + i))
IntStream.range(1, 8).mapToObj(i -> "sixthSegmentId_" + i),
IntStream.range(1, 79).mapToObj(i -> "seventhSegmentId_" + i))
.toList();

assertThat(targetNode.get("iab").elements()).toIterable().hasSize(95)
Expand Down
Loading