diff --git a/test/staging/sm/destructuring/order.js b/test/staging/sm/destructuring/order.js index 58d5065b7e..d2b2a534ac 100644 --- a/test/staging/sm/destructuring/order.js +++ b/test/staging/sm/destructuring/order.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -flags: - - noStrict description: | Destructuring should evaluate lhs reference before rhs esid: pending @@ -19,6 +17,7 @@ let obj = new Proxy(storage, { set(that, name, value) { log("lhs set " + name); storage.values[name] = value; + return true; } });