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 ae4eff6 commit 076af88Copy full SHA for 076af88
Tests/ParseSwiftTests/ParseErrorTests.swift
@@ -50,7 +50,7 @@ class ParseErrorTests: XCTestCase {
50
func testEncodeOther() throws {
51
let code = 2000
52
let message = "testing ParseError"
53
- guard let encoded: Data = "{\"error\":\"\(message)\",\"code\":\(code)}".data(using: .utf8) else {
+ guard let encoded = "{\"error\":\"\(message)\",\"code\":\(code)}".data(using: .utf8) else {
54
XCTFail("Should have unwrapped")
55
return
56
}
0 commit comments