making this consistent

This commit is contained in:
Steve Conover 2011-02-28 22:39:16 -08:00
parent 4e5083d570
commit 2731716ccb
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ jasmine.TrivialConsoleReporter = function(print) {
function yellowStr(str) { return coloredStr("yellow", str); }
function newline() { print("\n"); }
function started() { print("Started"); newline(); }
function started() { print("Started");
newline(); }
function greenDot() { print(greenStr(".")); }
function redF() { print(redStr("F")); }