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
1 changed files with 1 additions and 1 deletions

View File

@ -68,6 +68,6 @@ for (const hourCycle of validHourCycleOptions) {
assert.sameValue(
new Intl.Locale('en-u-hc-h00', options).hourCycle,
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}`
);
}