diff options
author | Joel Fischer <joeljfischer@gmail.com> | 2016-07-20 09:38:31 -0400 |
---|---|---|
committer | Joel Fischer <joeljfischer@gmail.com> | 2016-07-20 09:38:31 -0400 |
commit | 59263d1b4f0912334eb1d425cbaa5a45376e9036 (patch) | |
tree | 588965dde0fc4959fe3e2c619e0cd5c6ab94470f /SmartDeviceLinkTests | |
parent | b187326bf301342f0555e572fb37792fe2975484 (diff) | |
download | sdl_ios-59263d1b4f0912334eb1d425cbaa5a45376e9036.tar.gz |
Fix TestConnectionManager
Diffstat (limited to 'SmartDeviceLinkTests')
-rw-r--r-- | SmartDeviceLinkTests/TestUtilities/TestConnectionManager.m | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/SmartDeviceLinkTests/TestUtilities/TestConnectionManager.m b/SmartDeviceLinkTests/TestUtilities/TestConnectionManager.m index a232576b3..1d2570963 100644 --- a/SmartDeviceLinkTests/TestUtilities/TestConnectionManager.m +++ b/SmartDeviceLinkTests/TestUtilities/TestConnectionManager.m @@ -26,11 +26,7 @@ NS_ASSUME_NONNULL_BEGIN return self; } -- (void)sendRequest:(__kindof SDLRPCRequest *)request { - [self sendRequest:request withCompletionHandler:nil]; -} - -- (void)sendRequest:(__kindof SDLRPCRequest *)request withCompletionHandler:(nullable SDLRequestCompletionHandler)block { +- (void)sendManagerRequest:(__kindof SDLRPCRequest *)request withCompletionHandler:(nullable SDLRequestCompletionHandler)block { self.lastRequestBlock = block; request.correlationID = [self test_nextCorrelationID]; |