summaryrefslogtreecommitdiffstats
path: root/toolkit
diff options
context:
space:
mode:
authorTooru Fujisawa <arai_a@mac.com>2019-02-03 08:21:19 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-02-03 08:21:19 +0100
commitae4af7b7e598b4fec037254a1fd03ac3495695a4 (patch)
tree98d5420a48042e47b0d9971d30774b8c82d11486 /toolkit
parent90f6b2704658a554a12ed3c37545cb6474fbcf51 (diff)
downloadUXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar
UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar.gz
UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar.lz
UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar.xz
UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.zip
Stage 1-4: Update tests
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/modules/tests/xpcshell/test_Log.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/modules/tests/xpcshell/test_Log.js b/toolkit/modules/tests/xpcshell/test_Log.js
index 429bbcc50..6aee99c93 100644
--- a/toolkit/modules/tests/xpcshell/test_Log.js
+++ b/toolkit/modules/tests/xpcshell/test_Log.js
@@ -381,12 +381,12 @@ add_task(function* log_message_with_params() {
ob = function() {};
ob.toJSON = function() {throw "oh noes JSON"};
do_check_eq(formatMessage("Fail is ${sub}", {sub: ob}),
- 'Fail is (function () {})');
+ 'Fail is (function() {})');
// Fall back to .toString if both .toJSON and .toSource fail.
ob.toSource = function() {throw "oh noes SOURCE"};
do_check_eq(formatMessage("Fail is ${sub}", {sub: ob}),
- 'Fail is function () {}');
+ 'Fail is function() {}');
// Fall back to '[object]' if .toJSON, .toSource and .toString fail.
ob.toString = function() {throw "oh noes STRING"};
@@ -450,7 +450,7 @@ add_task(function* log_message_with_params() {
// doesn't cause the logger to fail.
let vOf = {a: 1, valueOf: function() {throw "oh noes valueOf"}};
do_check_eq(formatMessage("Broken valueOf ${}", vOf),
- 'Broken valueOf ({a:1, valueOf:(function () {throw "oh noes valueOf"})})');
+ 'Broken valueOf ({a:1, valueOf:(function() {throw "oh noes valueOf"})})');
// Test edge cases of bad data to formatter:
// If 'params' is not an object, format it as a basic type.