Changed 'type' field of MessageResult and ExpectationResult to 'log' and 'expect', respectively.

This commit is contained in:
Lee Byrd & Christian Williams
2010-06-22 14:48:47 -07:00
parent e7cd6a473a
commit e60f22a2e5
8 changed files with 19 additions and 14 deletions
-1
View File
@@ -24,7 +24,6 @@ describe("TrivialReporter", function() {
function findElements(divs, withClass) {
var els = [];
for (var i = 0; i < divs.length; i++) {
console.log(divs[i], divs[i].className);
if (divs[i].className == withClass) els.push(divs[i]);
}
return els;