From 43f8ad399b8c789fb2d5952c7f98920590f7c1b9 Mon Sep 17 00:00:00 2001 From: Tina L <49205802+itingliu@users.noreply.github.com> Date: Fri, 19 Dec 2025 07:34:10 +0800 Subject: [PATCH] conversationalDayPeriodsOverride() fails with ICU 78 (#1655) ICU78's update will cause this test to fail. ICU has merged a follow up fix, which should be available soon. Disable the test for now; will re-enable the test once the fix lands. 166656959 --- .../Formatting/ICUPatternGeneratorTests.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/FoundationInternationalizationTests/Formatting/ICUPatternGeneratorTests.swift b/Tests/FoundationInternationalizationTests/Formatting/ICUPatternGeneratorTests.swift index beb04a4f8..ae52ae6f6 100644 --- a/Tests/FoundationInternationalizationTests/Formatting/ICUPatternGeneratorTests.swift +++ b/Tests/FoundationInternationalizationTests/Formatting/ICUPatternGeneratorTests.swift @@ -19,6 +19,7 @@ import Testing private struct ICUPatternGeneratorTests { typealias DateFieldCollection = Date.FormatStyle.DateFieldCollection +#if FIXED_ICU78 @Test func conversationalDayPeriodsOverride() { var locale: Locale @@ -253,5 +254,5 @@ private struct ICUPatternGeneratorTests { expectedPattern: "h:mm:ss a") } } - +#endif }