From ca5e1ab1522765563a540e32d1a7528f597fd67a Mon Sep 17 00:00:00 2001 From: marc_tappx Date: Wed, 19 May 2021 09:52:26 +0200 Subject: [PATCH] tappxBidAdapter: fix circleci error --- test/spec/modules/tappxBidAdapter_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/modules/tappxBidAdapter_spec.js b/test/spec/modules/tappxBidAdapter_spec.js index cc3bad5b0fe..9fab7d858e1 100644 --- a/test/spec/modules/tappxBidAdapter_spec.js +++ b/test/spec/modules/tappxBidAdapter_spec.js @@ -153,7 +153,7 @@ describe('Tappx bid adapter', function () { it('should return true when endpoint is not set for new endpoints', function () { let badBidRequestNwEp = JSON.parse(JSON.stringify(c_BIDREQUEST)); ; delete badBidRequestNwEp.bids[0].params.endpoint; - badBidRequestNwEp.bids[0].params.host = "zztesting.ssp.tappx.com/rtb/v2/"; + badBidRequestNwEp.bids[0].params.host = 'zztesting.ssp.tappx.com/rtb/v2/'; assert.isTrue(spec.isBidRequestValid(badBidRequestNwEp.bids[0])); });