mirror of https://github.com/tc39/test262.git
Fix test/intl402/DurationFormat/prototype/format/style-digital-en.js
The expected output is not aligned: it is missing comma. This change fixes it.
This commit is contained in:
parent
bdddd9e2d2
commit
04a84fc5fd
|
@ -1,4 +1,5 @@
|
||||||
// Copyright 2022 Igalia, S.L. All rights reserved.
|
// Copyright 2022 Igalia, S.L. All rights reserved.
|
||||||
|
// Copyright 2023 Apple Inc. All rights reserved.
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
|
@ -9,7 +10,7 @@ features: [Intl.DurationFormat]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
const style = "digital";
|
const style = "digital";
|
||||||
const expected = "1 yr 2 mths 3 wks 3 days 4:05:06";
|
const expected = "1 yr, 2 mths, 3 wks, 3 days, 4:05:06";
|
||||||
|
|
||||||
const duration = {
|
const duration = {
|
||||||
years: 1,
|
years: 1,
|
||||||
|
|
Loading…
Reference in New Issue