From 2731716ccbf21536cdfa94b216ed9bd034624185 Mon Sep 17 00:00:00 2001 From: Steve Conover Date: Mon, 28 Feb 2011 22:39:16 -0800 Subject: [PATCH] making this consistent --- src/console/TrivialConsoleReporter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/console/TrivialConsoleReporter.js b/src/console/TrivialConsoleReporter.js index af9c7c0..616cf86 100644 --- a/src/console/TrivialConsoleReporter.js +++ b/src/console/TrivialConsoleReporter.js @@ -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")); }