Skip to content

Commit dd461cb

Browse files
committed
Another round of functional tests fixes.
1 parent c1b3dbf commit dd461cb

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/test/groovy/org/prebid/server/functional/tests/CacheSpec.groovy

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -574,10 +574,10 @@ class CacheSpec extends BaseSpec {
574574
verifyAll(bidResponse?.seatbid[0]?.bid[0]?.ext?.prebid?.targeting as Map) {
575575
it.get("hb_cache_id")
576576
it.get("hb_cache_id_generic")
577-
it.get("hb_cache_path") == CACHE_PATH
578-
it.get("hb_cache_host") == CACHE_HOST
579-
it.get("hb_cache_path_generic") == CACHE_PATH
580-
it.get("hb_cache_host_generic") == CACHE_HOST
577+
it.get("hb_cache_path") == this.CACHE_PATH
578+
it.get("hb_cache_host") == this.CACHE_HOST
579+
it.get("hb_cache_path_generic") == this.CACHE_PATH
580+
it.get("hb_cache_host_generic") == this.CACHE_HOST
581581
}
582582

583583
and: "Debug should contain http call"
@@ -610,9 +610,9 @@ class CacheSpec extends BaseSpec {
610610
verifyAll(bidResponse.seatbid[0].bid[0].ext.prebid.targeting) {
611611
it.get("hb_cache_id")
612612
it.get("hb_cache_id_generic")
613-
it.get("hb_cache_path") == INTERNAL_CACHE_PATH
613+
it.get("hb_cache_path") == this.INTERNAL_CACHE_PATH
614614
it.get("hb_cache_host") == networkServiceContainer.hostAndPort.toString()
615-
it.get("hb_cache_path_generic") == INTERNAL_CACHE_PATH
615+
it.get("hb_cache_path_generic") == this.INTERNAL_CACHE_PATH
616616
it.get("hb_cache_host_generic") == networkServiceContainer.hostAndPort.toString()
617617
}
618618

0 commit comments

Comments
 (0)