Skip to content

Commit ec867b6

Browse files
author
cloudhead
committed
output fixes
1 parent 1f2abe5 commit ec867b6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/vows/console.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ this.result = function (event) {
3636

3737

3838
if ('time' in event) {
39-
buffer.push("\nVerified " + event.total + " vows in " +
39+
buffer.push("Verified " + event.total + " vows in " +
4040
(event.time + " seconds.\n"));
4141
}
4242
buffer.push(this.stylize(result, style));

lib/vows/reporters/dot-matrix.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ this.report = function (data, s) {
1818

1919
switch (data[0]) {
2020
case 'subject':
21-
puts('\n' + stylize(event, 'underline') + '\n');
22-
sys.print(' ');
21+
messages.push(stylize(event, 'underline') + '\n');
2322
break;
2423
case 'context':
2524
break;

0 commit comments

Comments
 (0)