Bug 896811 - Test output looks very strange, and is useless for failing tests. r=jwalker

--HG--
extra : rebase_source : 5be7e5d80dcda096adacc58f9348c5f999cf52d3
This commit is contained in:
Dave Camp 2013-08-07 11:01:49 -07:00
parent 4903077ba7
commit 92aa250799

View File

@ -382,7 +382,7 @@ function formatTrace(aTrace) {
aTrace.forEach(function(frame) {
reply += fmt(frame.filename, 20, 20, { truncate: "start" }) + " " +
fmt(frame.lineNumber, 5, 5) + " " +
fmt(frame.functionName, 0, 75, { truncate: "center" }) + "\n";
fmt(frame.functionName, 75, 0, { truncate: "center" }) + "\n";
});
return reply;
}