diff --git a/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-default-en.js b/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-default-en.js index b0717ae5a5..9944b83039 100644 --- a/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-default-en.js +++ b/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-default-en.js @@ -52,15 +52,15 @@ const expected = [ { type: "literal", value: ", " }, { type: "integer", value: "123", unit: "millisecond" }, { type: "literal", value: " ", unit: "millisecond" }, - { type: "unit", value: "msec", unit: "millisecond" }, + { type: "unit", value: "ms", unit: "millisecond" }, { type: "literal", value: ", " }, { type: "integer", value: "456", unit: "microsecond" }, { type: "literal", value: " ", unit: "microsecond" }, - { type: "unit", value: "μsec", unit: "microsecond" }, - { type: "literal", value: " and " }, + { type: "unit", value: "μs", unit: "microsecond" }, + { type: "literal", value: ", " }, { type: "integer", value: "789", unit: "nanosecond" }, { type: "literal", value: " ", unit: "nanosecond" }, - { type: "unit", value: "nsec", unit: "nanosecond" }, + { type: "unit", value: "ns", unit: "nanosecond" }, ]; let df = new Intl.DurationFormat('en'); diff --git a/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-long-en.js b/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-long-en.js index 1424544e65..00f0eb741f 100644 --- a/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-long-en.js +++ b/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-long-en.js @@ -58,7 +58,7 @@ const expected = [ { type: "integer", value: "456", unit: "microsecond" }, { type: "literal", value: " ", unit: "microsecond" }, { type: "unit", value: "microseconds", unit: "microsecond" }, - { type: "literal", value: " and " }, + { type: "literal", value: ", " }, { type: "integer", value: "789", unit: "nanosecond" }, { type: "literal", value: " ", unit: "nanosecond" }, { type: "unit", value: "nanoseconds", unit: "nanosecond" }, diff --git a/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-short-en.js b/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-short-en.js index c3681ad47c..0736ef4a06 100644 --- a/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-short-en.js +++ b/test/intl402/DurationFormat/prototype/formatToParts/formatToParts-style-short-en.js @@ -53,15 +53,15 @@ const expected = [ { type: "literal", value: ", " }, { type: "integer", value: "123", unit: "millisecond" }, { type: "literal", value: " ", unit: "millisecond" }, - { type: "unit", value: "msec", unit: "millisecond" }, + { type: "unit", value: "ms", unit: "millisecond" }, { type: "literal", value: ", " }, { type: "integer", value: "456", unit: "microsecond" }, { type: "literal", value: " ", unit: "microsecond" }, - { type: "unit", value: "μsec", unit: "microsecond" }, - { type: "literal", value: " and " }, + { type: "unit", value: "μs", unit: "microsecond" }, + { type: "literal", value: ", " }, { type: "integer", value: "789", unit: "nanosecond" }, { type: "literal", value: " ", unit: "nanosecond" }, - { type: "unit", value: "nsec", unit: "nanosecond" }, + { type: "unit", value: "ns", unit: "nanosecond" }, ]; let df = new Intl.DurationFormat('en', { style });