Commit 3badfdcd authored by mike's avatar mike Committed by Commit bot

Re-write duplicated assertions

The modified assertions targeted the property descriptor for the
template object's first "cooked" value. The code immediately preceeding
these statements asserts these values.

Update the assertions to instead target the property descriptor for the
template object's first "raw" value (which are otherwise untested).

BUG=

Review URL: https://codereview.chromium.org/1049523003

Cr-Commit-Position: refs/heads/master@{#27566}
parent 43394806
...@@ -76,6 +76,7 @@ Maxim Mossienko <maxim.mossienko@gmail.com> ...@@ -76,6 +76,7 @@ Maxim Mossienko <maxim.mossienko@gmail.com>
Michael Lutz <michi@icosahedron.de> Michael Lutz <michi@icosahedron.de>
Michael Smith <mike@w3.org> Michael Smith <mike@w3.org>
Mike Gilbert <floppymaster@gmail.com> Mike Gilbert <floppymaster@gmail.com>
Mike Pennisi <mike@mikepennisi.com>
Nicolas Antonius Ernst Leopold Maria Kaiser <nikai@nikai.net> Nicolas Antonius Ernst Leopold Maria Kaiser <nikai@nikai.net>
Paolo Giarrusso <p.giarrusso@gmail.com> Paolo Giarrusso <p.giarrusso@gmail.com>
Patrick Gansterer <paroga@paroga.com> Patrick Gansterer <paroga@paroga.com>
......
...@@ -305,9 +305,9 @@ var obj = { ...@@ -305,9 +305,9 @@ var obj = {
assertTrue(cooked0.enumerable); assertTrue(cooked0.enumerable);
var raw0 = Object.getOwnPropertyDescriptor(cs.raw, "0"); var raw0 = Object.getOwnPropertyDescriptor(cs.raw, "0");
assertFalse(cooked0.writable); assertFalse(raw0.writable);
assertFalse(cooked0.configurable); assertFalse(raw0.configurable);
assertTrue(cooked0.enumerable); assertTrue(raw0.enumerable);
var length = Object.getOwnPropertyDescriptor(cs, "length"); var length = Object.getOwnPropertyDescriptor(cs, "length");
assertFalse(length.writable); assertFalse(length.writable);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment