From 506b108f732af22498b58c343ac7c5de8fa146ae Mon Sep 17 00:00:00 2001 From: Simon Evans Date: Wed, 25 Apr 2018 22:35:04 +0100 Subject: [PATCH] NumberFormatter: Disable test for currencyPlural that breaks on Ubuntu 14.04 - Cause could be ICU issues. --- TestFoundation/TestNumberFormatter.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestFoundation/TestNumberFormatter.swift b/TestFoundation/TestNumberFormatter.swift index c346b7c979..37d8b5a528 100644 --- a/TestFoundation/TestNumberFormatter.swift +++ b/TestFoundation/TestNumberFormatter.swift @@ -38,7 +38,7 @@ class TestNumberFormatter: XCTestCase { ("test_scientificMinimumIntegerDigits", test_scientificMinimumIntegerDigits), ("test_spellOutMinimumIntegerDigits", test_spellOutMinimumIntegerDigits), ("test_ordinalMinimumIntegerDigits", test_ordinalMinimumIntegerDigits), - ("test_currencyPluralMinimumIntegerDigits", test_currencyPluralMinimumIntegerDigits), + // XFAIL: breaks on Ubuntu 14.04 probably ICU - ("test_currencyPluralMinimumIntegerDigits", test_currencyPluralMinimumIntegerDigits), ("test_currencyISOCodeMinimumIntegerDigits", test_currencyISOCodeMinimumIntegerDigits), ("test_currencyAccountingMinimumIntegerDigits", test_currencyAccountingMinimumIntegerDigits), ("test_maximumIntegerDigits", test_maximumIntegerDigits),