Skip to content

Commit e7f0f04

Browse files
fix comments
1 parent 4f75114 commit e7f0f04

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/test/java/org/prebid/server/it/ConnektaiTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import java.io.IOException;
99

1010
import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
11-
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
1211
import static com.github.tomakehurst.wiremock.client.WireMock.equalToJson;
1312
import static com.github.tomakehurst.wiremock.client.WireMock.post;
1413
import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;
@@ -20,8 +19,6 @@ public class ConnektaiTest extends IntegrationTest {
2019
public void openrtb2AuctionShouldRespondWithBidsFromConnektai() throws IOException, JSONException {
2120
// given
2221
WIRE_MOCK_RULE.stubFor(post(urlPathEqualTo("/connektai-exchange"))
23-
.withQueryParam("host", equalTo("envValue"))
24-
.withQueryParam("sourceId", equalTo("pidValue"))
2522
.withRequestBody(equalToJson(
2623
jsonFrom("openrtb2/connektai/test-connektai-bid-request.json")))
2724
.willReturn(aResponse().withBody(

src/test/resources/org/prebid/server/it/test-application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ adapters.vrtcal.endpoint=http://localhost:8090/vrtcal-exchange
501501
adapters.xeworks.enabled=true
502502
adapters.xeworks.endpoint=http://localhost:8090/xeworks-exchange
503503
adapters.xeworks.aliases.connektai.enabled=true
504-
adapters.xeworks.aliases.connektai.endpoint=http://localhost:8090/connektai-exchange?host={{Host}}&sourceId={{SourceId}}
504+
adapters.xeworks.aliases.connektai.endpoint=http://localhost:8090/connektai-exchange
505505
adapters.vidazoo.enabled=true
506506
adapters.vidazoo.endpoint=http://localhost:8090/vidazoo-exchange/
507507
adapters.videobyte.enabled=true

0 commit comments

Comments
 (0)