diff --git a/modules/gumgumBidAdapter.js b/modules/gumgumBidAdapter.js index 697fd8c6103..161438df513 100644 --- a/modules/gumgumBidAdapter.js +++ b/modules/gumgumBidAdapter.js @@ -298,10 +298,11 @@ function buildRequests(validBidRequests, bidderRequest) { const date = new Date(); const lt = date.getTime(); const to = date.getTimezoneOffset(); - if (to) { - lt && (data.lt = lt); - data.to = to; - } + + // ADTS-174 Removed unnecessary checks to fix failing test + data.lt = lt; + data.to = to; + // ADTS-169 add adUnitCode to requests if (adUnitCode) data.aun = adUnitCode