Skip to content

Commit c82398a

Browse files
authored
Merge pull request #1777 from bjhomer/patch-1
Adjust for 'try?' changes in Swift 5
2 parents 8e4452b + 0a09384 commit c82398a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TestFoundation/TestURL.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private func getTestData() -> [Any]? {
3535
XCTFail("Unable to deserialize property list data")
3636
return nil
3737
}
38-
guard let parsingTests = testRoot![kURLTestParsingTestsKey] as? [Any] else {
38+
guard let parsingTests = testRoot[kURLTestParsingTestsKey] as? [Any] else {
3939
XCTFail("Unable to create the parsingTests dictionary")
4040
return nil
4141
}

0 commit comments

Comments
 (0)