Skip to content

Commit

Permalink
Merge pull request #457 from dailymotion/fix-unit-test-impression
Browse files Browse the repository at this point in the history
fix inconsistent tests
  • Loading branch information
ZacharieTFR committed Aug 23, 2023
2 parents 98d212d + a58dc07 commit 6d2ed94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/ad_parser.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,11 @@ describe('AdParser', function () {
});

it('validate viewableImpressionPartial NotViewable is undefined', () => {
expect(parsedViewableImpressionPartial.NotNiewable).toBeUndefined;
expect(parsedViewableImpressionPartial.notViewable).toEqual([]);
});

it('validate viewableImpressionPartial viewundetermined is undefined', () => {
expect(parsedViewableImpressionPartial.viewundetermined).toBeUndefined;
expect(parsedViewableImpressionPartial.viewUndetermined).toEqual([]);
});
});
});

0 comments on commit 6d2ed94

Please sign in to comment.