summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-05-05 13:40:01 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-05-05 13:40:01 -0400
commitb3fe9354408fed6c2b2f677a33bd1699739630e6 (patch)
tree0e71400d922cb23c26ceb3183ddb426a0ba8dad5
parent7b7f69f9d7ac6eaf01de9f26735839dda0da614b (diff)
downloadsdl_ios-b3fe9354408fed6c2b2f677a33bd1699739630e6.tar.gz
Remove focus
-rw-r--r--SmartDeviceLinkTests/Notifications/SDLResponseDispatcherSpec.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLinkTests/Notifications/SDLResponseDispatcherSpec.m b/SmartDeviceLinkTests/Notifications/SDLResponseDispatcherSpec.m
index 1882354fb..150e07168 100644
--- a/SmartDeviceLinkTests/Notifications/SDLResponseDispatcherSpec.m
+++ b/SmartDeviceLinkTests/Notifications/SDLResponseDispatcherSpec.m
@@ -704,7 +704,7 @@ describe(@"a response dispatcher", ^{
__block SDLPerformAudioPassThru *testPerformAudioPassThru = nil;
__block NSUInteger numTimesHandlerCalled = 0;
- fcontext(@"with a handler", ^{
+ context(@"with a handler", ^{
beforeEach(^{
testPerformAudioPassThru = [[SDLPerformAudioPassThru alloc] initWithSamplingRate:SDLSamplingRate8KHZ bitsPerSample:SDLBitsPerSample8Bit audioType:SDLAudioTypePCM maxDuration:1000 audioDataHandler:^(NSData * _Nullable audioData) {
numTimesHandlerCalled++;