summaryrefslogtreecommitdiffstats
path: root/services/sync/tests/unit/test_utils_deferGetSet.js
diff options
context:
space:
mode:
Diffstat (limited to 'services/sync/tests/unit/test_utils_deferGetSet.js')
-rw-r--r--services/sync/tests/unit/test_utils_deferGetSet.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/services/sync/tests/unit/test_utils_deferGetSet.js b/services/sync/tests/unit/test_utils_deferGetSet.js
index 9d58a9873..55c0fcb0e 100644
--- a/services/sync/tests/unit/test_utils_deferGetSet.js
+++ b/services/sync/tests/unit/test_utils_deferGetSet.js
@@ -6,12 +6,8 @@ function run_test() {
base.prototype = {
dst: {},
- get a() {
- return "a";
- },
- set b(val) {
- this.dst.b = val + "!!!";
- }
+ get a() "a",
+ set b(val) this.dst.b = val + "!!!"
};
let src = new base();