remove a leftover call to "console.log"

This commit is contained in:
Erik Hanson & Evan Cooney 2009-08-12 16:12:57 -07:00
parent 4410c7cd94
commit 3e68a2c2bc

View File

@ -50,9 +50,6 @@ jasmine.TrivialReporter.prototype.reportRunnerStarting = function(runner) {
};
jasmine.TrivialReporter.prototype.reportRunnerResults = function(runner) {
this.log(">>>>>>>>>>>>>>>>>");
this.log(runner.getResults());
var results = runner.getResults();
var className = (results.failedCount > 0) ? "runner failed" : "runner passed";
this.runnerDiv.setAttribute("class", className);