correct comments

This commit is contained in:
Frank Yung-Fong Tang 2020-04-23 13:52:54 -07:00 committed by Rick Waldron
parent aabf688371
commit 9b54c22e10
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ const expected = [
let actual = Object.getOwnPropertyNames(options);
// Ensure all expected items are in actual and also allow other property
// implemented in other new proposal.
// Ensure all expected items are in actual and also allow other properties
// implemented in new proposals.
assert(arrayContains(actual, expected));
for (var i = 1; i < expected.length; i++) {
// Ensure the order as expected but allow additional new property in between