archives

« Bugzilla Issues Index

#72 — Typo in Test 15.2.3.6-4-590


------------
var hasOwnProperty = !teamMeeting.hasOwnProperty("name") &&
!teamMeeting.hasOwnProperty("startTime") &&
!teamMeeting.hasOwnProperty("startTime");
------------
Third line should be:
!teamMeeting.hasOwnProperty("conferenceCall");

Other tests may be affected. Might be worth checking.


Great spot! This affected 15.2.3.6-4-588.js through 15.2.3.6-4-592.js. The fixes have been checked into Mercurial.