summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/apply/trap-is-undefined-no-property.js')
-rw-r--r--test/built-ins/Proxy/apply/trap-is-undefined-no-property.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js b/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js
index 898fad362..9cb26e365 100644
--- a/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js
+++ b/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js
@@ -25,9 +25,9 @@ info: |
var calls = 0;
function target(a, b) {
- assert.sameValue(this, ctx);
- calls += 1;
- return a + b;
+ assert.sameValue(this, ctx);
+ calls += 1;
+ return a + b;
}
var ctx = {};