diff options
| author | Chris Rebert <[email protected]> | 2013-12-06 16:43:09 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-12-06 16:43:09 -0800 |
| commit | 4be126e0142556805b59cb5a62d33c4a3fd2b8d4 (patch) | |
| tree | e361eec9c929fcbdf308cd13d6cc1adfe87a19f8 /js/tests/unit/phantom.js | |
| parent | 650279f70388acb366f560fdcb03b048ec1dc318 (diff) | |
| parent | 5e2ef69e1cc0ee62dfe1206f25030d1f89d9e50f (diff) | |
| download | bootstrap-4be126e0142556805b59cb5a62d33c4a3fd2b8d4.tar.xz bootstrap-4be126e0142556805b59cb5a62d33c4a3fd2b8d4.zip | |
Merge pull request #11745 from XhmikosR/function-spaces
Be consistent with function () spaces
Diffstat (limited to 'js/tests/unit/phantom.js')
| -rw-r--r-- | js/tests/unit/phantom.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js index c584c5a35..cf9da2537 100644 --- a/js/tests/unit/phantom.js +++ b/js/tests/unit/phantom.js @@ -22,7 +22,7 @@ } // These methods connect QUnit to PhantomJS. - QUnit.log = function(obj) { + QUnit.log = function (obj) { // What is this I don’t even if (obj.message === '[object Object], undefined:undefined') { return } // Parse some stuff before sending it. @@ -32,15 +32,15 @@ sendMessage('qunit.log', obj.result, actual, expected, obj.message, obj.source) } - QUnit.testStart = function(obj) { + QUnit.testStart = function (obj) { sendMessage('qunit.testStart', obj.name) } - QUnit.testDone = function(obj) { + QUnit.testDone = function (obj) { sendMessage('qunit.testDone', obj.name, obj.failed, obj.passed, obj.total) } - QUnit.moduleStart = function(obj) { + QUnit.moduleStart = function (obj) { sendMessage('qunit.moduleStart', obj.name) } |
