mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
Delete ignored try keyword. (#1298)
This commit is contained in:
committed by
GitHub
parent
b142998dbb
commit
a607d0a0d2
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user