From 7f3d388762ca1656a833097c250a4b39ba1ed5d5 Mon Sep 17 00:00:00 2001
From: Dmitry Preobrazhenskiy <d.preobrahzenskiy@gmail.com>
Date: Thu, 17 Jan 2019 10:17:05 +0200
Subject: [PATCH] Fix missing AppDelegate 4.2 migration

Method was renamed and when launching the tests the test host failed
due to this
---
 Test Host/AppDelegate.swift | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Test Host/AppDelegate.swift b/Test Host/AppDelegate.swift
index 68d25f0..bca6e2c 100644
--- a/Test Host/AppDelegate.swift	
+++ b/Test Host/AppDelegate.swift	
@@ -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
     }