@@ -1446,7 +1446,7 @@ describe('weboramaRtdProvider', function() {
1446
1446
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids . length ) . to . equal ( 5 ) ;
1447
1447
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 0 ] . params ) . to . be . undefined ;
1448
1448
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 1 ] . params ) . to . be . undefined ;
1449
- expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params . keywords ) . to . deep . equal ( data ) ;
1449
+ expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params ) . to . be . undefined ;
1450
1450
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 3 ] . params ) . to . be . undefined ;
1451
1451
[ 'smartadserver' , 'pubmatic' , 'appnexus' , 'rubicon' , 'other' ] . forEach ( ( v ) => {
1452
1452
if ( v == 'appnexus' ) {
@@ -1585,7 +1585,7 @@ describe('weboramaRtdProvider', function() {
1585
1585
expect ( adUnit . bids . length ) . to . equal ( 5 ) ;
1586
1586
expect ( adUnit . bids [ 0 ] . params ) . to . be . undefined ;
1587
1587
expect ( adUnit . bids [ 1 ] . params ) . to . be . undefined ;
1588
- expect ( adUnit . bids [ 2 ] . params . keywords ) . to . deep . equal ( data ) ;
1588
+ expect ( adUnit . bids [ 2 ] . params ) . to . be . undefined ;
1589
1589
expect ( adUnit . bids [ 3 ] . params ) . to . be . undefined ;
1590
1590
} ) ;
1591
1591
[ 'smartadserver' , 'pubmatic' , 'appnexus' , 'rubicon' , 'other' ] . forEach ( ( v ) => {
@@ -1712,6 +1712,7 @@ describe('weboramaRtdProvider', function() {
1712
1712
expect ( adUnit . bids . length ) . to . equal ( 5 ) ;
1713
1713
expect ( adUnit . bids [ 0 ] . params ) . to . be . undefined ;
1714
1714
expect ( adUnit . bids [ 1 ] . params ) . to . be . undefined ;
1715
+ expect ( adUnit . bids [ 2 ] . params ) . to . be . undefined ;
1715
1716
expect ( adUnit . bids [ 3 ] . params ) . to . be . undefined ;
1716
1717
} ) ;
1717
1718
[ 'smartadserver' , 'pubmatic' , 'appnexus' , 'rubicon' , 'other' ] . forEach ( ( v ) => {
@@ -1731,9 +1732,6 @@ describe('weboramaRtdProvider', function() {
1731
1732
expect ( reqBidsConfigObj . ortb2Fragments . bidder [ v ] ) . to . be . undefined ;
1732
1733
} )
1733
1734
1734
- expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params . keywords ) . to . deep . equal ( data ) ;
1735
- expect ( reqBidsConfigObj . adUnits [ 1 ] . bids [ 2 ] . params ) . to . be . undefined ;
1736
-
1737
1735
expect ( onDataResponse ) . to . deep . equal ( {
1738
1736
data : data ,
1739
1737
meta : {
@@ -2189,8 +2187,6 @@ describe('weboramaRtdProvider', function() {
2189
2187
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 1 ] . params . dctr ) . to . equal ( 'foo=bar' ) ;
2190
2188
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params . keywords ) . to . deep . equal ( {
2191
2189
foo : [ 'bar' ] ,
2192
- webo_cs : [ 'foo' , 'bar' ] ,
2193
- webo_audiences : [ 'baz' ] ,
2194
2190
} ) ;
2195
2191
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 3 ] . params ) . to . deep . equal ( {
2196
2192
inventory : {
@@ -2278,7 +2274,7 @@ describe('weboramaRtdProvider', function() {
2278
2274
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids . length ) . to . equal ( 5 ) ;
2279
2275
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 0 ] . params ) . to . be . undefined ;
2280
2276
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 1 ] . params ) . to . be . undefined ;
2281
- expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params . keywords ) . to . deep . equal ( defaultProfile ) ;
2277
+ expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params ) . to . be . undefined ;
2282
2278
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 3 ] . params ) . to . be . undefined ;
2283
2279
[ 'smartadserver' , 'pubmatic' , 'appnexus' , 'rubicon' , 'other' ] . forEach ( ( v ) => {
2284
2280
if ( v == 'appnexus' ) {
@@ -2365,7 +2361,7 @@ describe('weboramaRtdProvider', function() {
2365
2361
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids . length ) . to . equal ( 5 ) ;
2366
2362
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 0 ] . params ) . to . be . undefined ;
2367
2363
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 1 ] . params ) . to . be . undefined ;
2368
- expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params . keywords ) . to . deep . equal ( defaultProfile ) ;
2364
+ expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 2 ] . params ) . to . be . undefined ;
2369
2365
expect ( reqBidsConfigObj . adUnits [ 0 ] . bids [ 3 ] . params ) . to . be . undefined ;
2370
2366
[ 'smartadserver' , 'pubmatic' , 'appnexus' , 'rubicon' , 'other' ] . forEach ( ( v ) => {
2371
2367
if ( v == 'appnexus' ) {
@@ -2653,7 +2649,7 @@ describe('weboramaRtdProvider', function() {
2653
2649
2654
2650
Object . keys ( testcases ) . forEach ( label => {
2655
2651
const sendToBidders = testcases [ label ] ;
2656
- it ( `check sendToBidders as ${ label } ` , function ( ) {
2652
+ it ( `check sendToBidders as ' ${ label } ' ` , function ( ) {
2657
2653
let onDataResponse = { } ;
2658
2654
const moduleConfig = {
2659
2655
params : {
0 commit comments