Skip to content

Commit

Permalink
Remove redundant code
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhii Nahornyi committed Jul 6, 2021
1 parent f3222de commit f5306ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/java/org/prebid/server/it/IntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ static void assertJSONEquals(String file, String bidder, String response, Custom
fullCustomizations.add(new Customization(String.format("ext.responsetimemillis.%s", bidder), (o1, o2) -> true));

JSONAssert.assertEquals(jsonFrom(file), response,
new CustomComparator(JSONCompareMode.NON_EXTENSIBLE,
fullCustomizations.stream().toArray(Customization[]::new)));
new CustomComparator(JSONCompareMode.NON_EXTENSIBLE, fullCustomizations.toArray(Customization[]::new)));
}

static BidCacheRequestPattern equalToBidCacheRequest(String json) {
Expand Down

0 comments on commit f5306ba

Please sign in to comment.