@@ -40,7 +40,7 @@ void badRequestOnInvalidTcfConsent(Vertx vertx, VertxTestContext testContext) {
4040 final JsonObject v2Payload = new JsonObject ();
4141 v2Payload .put ("email" , emailAddress );
4242 v2Payload .put ("tcf_consent_string" , "invalid_consent_string" );
43- sendTokenGenerate ("v2" , vertx , v2Payload , 400 , json -> testContext .completeNow ());
43+ sendTokenGenerate (vertx , v2Payload , 400 , json -> testContext .completeNow ());
4444 }
4545
4646 @ Test
@@ -53,7 +53,7 @@ void noTCFString(Vertx vertx, VertxTestContext testContext) {
5353 final String emailAddress = "test@uid2.com" ;
5454 final JsonObject v2Payload = new JsonObject ();
5555 v2Payload .put ("email" , emailAddress );
56- sendTokenGenerate ("v2" , vertx , v2Payload , 200 , json -> testContext .completeNow (), false );
56+ sendTokenGenerate (vertx , v2Payload , 200 , json -> testContext .completeNow (), false );
5757
5858 }
5959
@@ -69,7 +69,7 @@ void noContentOnInsufficientTcfConsent(Vertx vertx, VertxTestContext testContext
6969 v2Payload .put ("email" , emailAddress );
7070 // this TCString is missing consent for purpose #1
7171 v2Payload .put ("tcf_consent_string" , "CPehXK9PehXK9ABAMBFRACBoADAAAEJAAIYgAKwAQAKgArABAAqAAA" );
72- sendTokenGenerate ("v2" , vertx , v2Payload , 200 , json -> {
72+ sendTokenGenerate (vertx , v2Payload , 200 , json -> {
7373 assertFalse (json .containsKey ("body" ));
7474 assertEquals ("insufficient_user_consent" , json .getString ("status" ));
7575 testContext .completeNow ();
0 commit comments