We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141270e commit 2212846Copy full SHA for 2212846
TestFoundation/TestNSString.swift
@@ -630,13 +630,13 @@ class TestNSString : XCTestCase {
630
withVaList(argument) {
631
pointer in
632
let string = NSString(format: "en_GB value is %d (%.1f)", locale: NSLocale.init(localeIdentifier: "en_GB"), arguments: pointer)
633
- XCTAssertEqual(string, "en_GB value is 1,000 (42.0)")
+ XCTAssertEqual(string, "en_GB value is 1000 (42.0)")
634
}
635
636
637
638
let string = NSString(format: "de_DE value is %d (%.1f)", locale: NSLocale.init(localeIdentifier: "de_DE"), arguments: pointer)
639
- XCTAssertEqual(string, "de_DE value is 1.000 (42,0)")
+ XCTAssertEqual(string, "de_DE value is 1000 (42,0)")
640
641
642
0 commit comments