Delete ignored try keyword. (#1298)

This commit is contained in:
Kazumasa Shimomura
2022-12-09 16:11:20 +09:00
committed by GitHub
parent b142998dbb
commit a607d0a0d2
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -14,6 +14,7 @@
- Fix scheme not being generated for aggregate targets #1250 @CraigSiemens
- Fix recursive include path when relativePath is not set #1275 @ma-oli
- Include projectRoot in include paths #1275 @ma-oli
- Delete ignored `try` keyword #1298 @s2mr
### Internal
- Updated to Yams 5.0.1 [#1297](https://github.com/yonaskolb/XcodeGen/pull/1297) @s2mr
@@ -409,7 +409,7 @@ class ProjectSpecTests: XCTestCase {
platform: .iOS
)]
let testPlan = try TestPlan(path: "does-not-exist.xctestplan")
let testPlan = TestPlan(path: "does-not-exist.xctestplan")
let scheme = Scheme(
name: "xctestplan-scheme",
@@ -437,8 +437,8 @@ class ProjectSpecTests: XCTestCase {
platform: .iOS
)]
let testPlan1 = try TestPlan(path: "\(fixturePath.string)/TestProject/App_iOS/App_iOS.xctestplan", defaultPlan: true)
let testPlan2 = try TestPlan(path: "\(fixturePath.string)/TestProject/App_iOS/App_iOS.xctestplan", defaultPlan: true)
let testPlan1 = TestPlan(path: "\(fixturePath.string)/TestProject/App_iOS/App_iOS.xctestplan", defaultPlan: true)
let testPlan2 = TestPlan(path: "\(fixturePath.string)/TestProject/App_iOS/App_iOS.xctestplan", defaultPlan: true)
let scheme = Scheme(
name: "xctestplan-scheme",