Skip to content

Commit

Permalink
Consistent quoting, use single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwmwong committed Mar 19, 2018
1 parent 7decf6a commit 0c1492d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions test/built-ins/RegExpStringIteratorPrototype/next/length.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ const RegExpStringIteratorProto = Object.getPrototypeOf(/./[Symbol.matchAll]('')

assert.sameValue(RegExpStringIteratorProto.next.length, 0);

verifyNotEnumerable(RegExpStringIteratorProto.next, "length");
verifyNotWritable(RegExpStringIteratorProto.next, "length");
verifyConfigurable(RegExpStringIteratorProto.next, "length");
verifyNotEnumerable(RegExpStringIteratorProto.next, 'length');
verifyNotWritable(RegExpStringIteratorProto.next, 'length');
verifyConfigurable(RegExpStringIteratorProto.next, 'length');
8 changes: 4 additions & 4 deletions test/built-ins/RegExpStringIteratorPrototype/next/name.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ features: [Symbol.matchAll]

const RegExpStringIteratorProto = Object.getPrototypeOf(/./[Symbol.matchAll](''));

assert.sameValue(RegExpStringIteratorProto.next.name, "next");
assert.sameValue(RegExpStringIteratorProto.next.name, 'next');

verifyNotEnumerable(RegExpStringIteratorProto.next, "name");
verifyNotWritable(RegExpStringIteratorProto.next, "name");
verifyConfigurable(RegExpStringIteratorProto.next, "name");
verifyNotEnumerable(RegExpStringIteratorProto.next, 'name');
verifyNotWritable(RegExpStringIteratorProto.next, 'name');
verifyConfigurable(RegExpStringIteratorProto.next, 'name');

0 comments on commit 0c1492d

Please sign in to comment.