Closed
Bug 532022
Opened 16 years ago
Closed 16 years ago
test_bayes fails on JS strict mode
Categories
(MailNews Core :: Filters, defect)
MailNews Core
Filters
Tracking
(Not tracked)
RESOLVED
FIXED
Thunderbird 3.1a1
People
(Reporter: lusian, Assigned: lusian)
References
Details
Attachments
(1 file)
5.64 KB,
patch
|
standard8
:
review+
|
Details | Diff | Splinter Review |
xpcshell unit test in /mailnews/extensions/bayesian-spam-filter/test fail on JS strict mode.
Attachment #415330 -
Flags: review?(bugzilla)
Assignee | ||
Updated•16 years ago
|
Updated•16 years ago
|
Attachment #415330 -
Flags: review?(bugzilla) → review+
Assignee | ||
Updated•16 years ago
|
Keywords: checkin-needed
Comment 1•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Flags: in-testsuite+
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → Thunderbird 3.1a1
Comment 2•16 years ago
|
||
Is is really true that this sort of change is needed for strict:
- while (antiAlias = antiAliases.pop())
+ while ((antiAlias = antiAliases.pop()))
?
Assignee | ||
Comment 3•16 years ago
|
||
The error message was:
test_traitAliases.js:181: SyntaxError: test for equality (==) mistyped as
assignment (=)?:
test_traitAliases.js:181: while (proAlias = gTest.proAliases.pop())
test_traitAliases.js:181: ..........................................^
You need to log in
before you can comment on or make changes to this bug.
Description
•