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 78de7ea commit 313cc93Copy full SHA for 313cc93
TestFoundation/TestNSJSONSerialization.swift
@@ -1070,12 +1070,12 @@ extension TestNSJSONSerialization {
1070
1071
func test_serialize_UIntMax() {
1072
let json: [Any] = [UInt.max]
1073
- XCTAssertEqual(try trySerialize(json), "[\(Int.max)]")
+ XCTAssertEqual(try trySerialize(json), "[\(UInt.max)]")
1074
}
1075
1076
func test_serialize_UIntMin() {
1077
let json: [Any] = [UInt.min]
1078
- XCTAssertEqual(try trySerialize(json), "[\(Int.min)]")
+ XCTAssertEqual(try trySerialize(json), "[\(UInt.min)]")
1079
1080
1081
func test_serialize_stringEscaping() {
0 commit comments