diff options
-rw-r--r-- | swift/test/TestDriver/iOS/ControllerI.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/swift/test/TestDriver/iOS/ControllerI.swift b/swift/test/TestDriver/iOS/ControllerI.swift index 39b73618fab..eae08d6fde8 100644 --- a/swift/test/TestDriver/iOS/ControllerI.swift +++ b/swift/test/TestDriver/iOS/ControllerI.swift @@ -85,7 +85,8 @@ class ProcessControllerI: CommonProcessController { queue: (exe == "Server" || exe == "ServerAMD") ? _serverDispatchQueue : _clientDispatchQueue) helper.run() - return try uncheckedCast(prx: adapter.addWithUUID(CommonProcessDisp(ProcessI(helper: helper))), type: CommonProcessPrx.self) + return try uncheckedCast(prx: adapter.addWithUUID( + CommonProcessDisp(ProcessI(helper: helper))), type: CommonProcessPrx.self) } func getHost(protocol _: String, |