Intl.Locale: fix typo in assertion message (#1575)

This commit is contained in:
Rick Waldron 2018-05-29 14:02:28 -04:00 committed by Leo Balter
parent 5aa5910f6d
commit c1c60447f3

View File

@ -68,6 +68,6 @@ for (const hourCycle of validHourCycleOptions) {
assert.sameValue( assert.sameValue(
new Intl.Locale('en-u-hc-h00', options).hourCycle, new Intl.Locale('en-u-hc-h00', options).hourCycle,
expected, expected,
`new Intl.Locale('en-u-hc-h00', options).hourCycle equals the value of ${expect}` `new Intl.Locale('en-u-hc-h00', options).hourCycle equals the value of ${expected}`
); );
} }