From 6c7e3e8c5d22cc31700b9e0af5c8e0e5e00cc942 Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Sun, 14 Jun 2015 16:04:11 +0200 Subject: [PATCH] Update test desc. --- test/tests/premisses.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/premisses.js b/test/tests/premisses.js index e0d6e3f7..7c32f5fd 100644 --- a/test/tests/premisses.js +++ b/test/tests/premisses.js @@ -15,7 +15,7 @@ describe('premisses', function () { assert.strictEqual(document, window.document); }); - it('jQuery and $ are global objects', function () { + it('jQuery and $ are global functions', function () { assert.isFunction(jQuery); assert.strictEqual(jQuery, window.jQuery); @@ -25,7 +25,7 @@ describe('premisses', function () { assert.strictEqual($, window.$); }); - it('_ is global object', function () { + it('_ is global function', function () { assert.isFunction(_); assert.strictEqual(_, window._);