Skip to content

Commit

Permalink
update AFP Adapter and add page examples
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-ka-97 committed Aug 20, 2021
1 parent 1ad90c0 commit 31224ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/modules/afpBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ describe('AFP Adapter', function() {
describe('isBidRequestValid method', function() {
describe('returns true', function() {
describe('when config has all mandatory params', () => {
Object.entries(configByPlaceType).forEach(([placeType, config]) => {
Object.keys(configByPlaceType).forEach(placeType => {
it(`and ${placeType} config has the correct value`, function() {
const isBidRequestValid = spec.isBidRequestValid(config)
const isBidRequestValid = spec.isBidRequestValid(configByPlaceType[placeType])
expect(isBidRequestValid).to.equal(true)
})
})
Expand Down

0 comments on commit 31224ed

Please sign in to comment.