Skip to content

Commit

Permalink
Fix missing AppDelegate 4.2 migration
Browse files Browse the repository at this point in the history
Method was renamed and when launching the tests the test host failed
due to this
  • Loading branch information
Dmitry Preobrazhenskiy committed Jan 18, 2019
1 parent 7e909e5 commit 7f3d388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test Host/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
private func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
Expand Down

0 comments on commit 7f3d388

Please sign in to comment.