From ab087ef5f8022ef7990ef48cddef5e635a0ee6b4 Mon Sep 17 00:00:00 2001 From: "Davis W. Frank" Date: Mon, 7 Mar 2011 22:34:58 -0800 Subject: [PATCH] Pendantic terminology --- spec/node_suite.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/node_suite.js b/spec/node_suite.js index 97be47e..3573aa2 100644 --- a/spec/node_suite.js +++ b/spec/node_suite.js @@ -162,8 +162,8 @@ jasmine.printRunnerResults = function(runner){ var results = runner.results(); var suites = runner.suites(); var msg = ''; - msg += suites.length + ' test' + ((suites.length === 1) ? '' : 's') + ', '; - msg += results.totalCount + ' assertion' + ((results.totalCount === 1) ? '' : 's') + ', '; + msg += suites.length + ' spec' + ((suites.length === 1) ? '' : 's') + ', '; + msg += results.totalCount + ' expectation' + ((results.totalCount === 1) ? '' : 's') + ', '; msg += results.failedCount + ' failure' + ((results.failedCount === 1) ? '' : 's') + '\n'; return msg; };