Skip to content

Commit

Permalink
Update userId_spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
patmmccann authored Mar 25, 2021
1 parent f42f6d8 commit 35de176
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/spec/modules/userId_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ describe('User ID', function () {
expect(bid.userId.idl_env).to.equal('AiGNC8Z5ONyZKSpIPf');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'liveramp.com',
uids: [{id: 'AiGNC8Z5ONyZKSpIPf', atype: 1}]
uids: [{id: 'AiGNC8Z5ONyZKSpIPf', atype: 3}]
});
});
});
Expand All @@ -962,7 +962,7 @@ describe('User ID', function () {
expect(bid.userId.idl_env).to.equal('AiGNC8Z5ONyZKSpIPf');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'liveramp.com',
uids: [{id: 'AiGNC8Z5ONyZKSpIPf', atype: 1}]
uids: [{id: 'AiGNC8Z5ONyZKSpIPf', atype: 3}]
});
});
});
Expand Down Expand Up @@ -1032,7 +1032,7 @@ describe('User ID', function () {
expect(bid.userId.lipb.lipbid).to.equal('random-ls-identifier');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'liveintent.com',
uids: [{id: 'random-ls-identifier', atype: 1}]
uids: [{id: 'random-ls-identifier', atype: 3}]
});
});
});
Expand All @@ -1056,7 +1056,7 @@ describe('User ID', function () {
expect(bid.userId.lipb.lipbid).to.equal('random-cookie-identifier');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'liveintent.com',
uids: [{id: 'random-cookie-identifier', atype: 1}]
uids: [{id: 'random-cookie-identifier', atype: 3}]
});
});
});
Expand Down Expand Up @@ -1440,7 +1440,7 @@ describe('User ID', function () {
expect(bid.userId.lipb.segments).to.include('123');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'liveintent.com',
uids: [{id: 'random-ls-identifier', atype: 1}],
uids: [{id: 'random-ls-identifier', atype: 3}],
ext: {segments: ['123']}
});
});
Expand Down Expand Up @@ -1469,7 +1469,7 @@ describe('User ID', function () {
expect(bid.userId.lipb.segments).to.include('123');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'liveintent.com',
uids: [{id: 'random-cookie-identifier', atype: 1}],
uids: [{id: 'random-cookie-identifier', atype: 3}],
ext: {segments: ['123']}
});
});
Expand All @@ -1494,7 +1494,7 @@ describe('User ID', function () {
expect(bid.userId.britepoolid).to.equal('279c0161-5152-487f-809e-05d7f7e653fd');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'britepool.com',
uids: [{id: '279c0161-5152-487f-809e-05d7f7e653fd', atype: 1}]
uids: [{id: '279c0161-5152-487f-809e-05d7f7e653fd', atype: 3}]
});
});
});
Expand Down Expand Up @@ -1592,7 +1592,7 @@ describe('User ID', function () {
expect(bid.userId.merkleId).to.equal('testmerkleId');
expect(bid.userIdAsEids[0]).to.deep.equal({
source: 'merkleinc.com',
uids: [{id: 'testmerkleId', atype: 1}]
uids: [{id: 'testmerkleId', atype: 3}]
});
});
});
Expand Down

0 comments on commit 35de176

Please sign in to comment.