mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-23 21:17:52 +00:00
fix wrong log message.
This commit is contained in:
parent
75c4ac53e3
commit
b7dc137d58
@ -79,9 +79,11 @@ function makeTestChecker(input, expected, errors) {
|
||||
todo(reorderedDOM == expected, "HTML5 expected failure. " + new Date());
|
||||
writeErrorSummary(input, expected, reorderedDOM, true);
|
||||
} else {
|
||||
is(reorderedDOM, expected, "HTML5 unexpected failure. " + new Date());
|
||||
if (reorderedDOM != expected) {
|
||||
is(reorderedDOM, expected, "HTML5 unexpected failure. " + input + " " + new Date());
|
||||
writeErrorSummary(input, expected, reorderedDOM, false);
|
||||
} else {
|
||||
is(reorderedDOM, expected, "HTML5 expected success. " + new Date());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user