summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2019-09-19 11:23:34 -0400
committerJoel Fischer <joeljfischer@gmail.com>2019-09-19 11:23:34 -0400
commita64ef8c19e3e8995124db10f018486233be0a39d (patch)
tree553a3aecd8533722b56d7056f16a514c6284fa1a
parentadf879e51048f4720ca3a1d117355a9c80eed90b (diff)
downloadsdl_ios-a64ef8c19e3e8995124db10f018486233be0a39d.tar.gz
Set test value to nil before running
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m
index f8bbb1aad..340478fe1 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m
@@ -22,7 +22,7 @@
QuickSpecBegin(SDLPresentKeyboardOperationSpec)
-describe(@"present keyboard operation", ^{
+fdescribe(@"present keyboard operation", ^{
__block TestConnectionManager *testConnectionManager = nil;
__block SDLPresentKeyboardOperation *testOp = nil;
@@ -35,6 +35,7 @@ describe(@"present keyboard operation", ^{
__block NSError *resultError = nil;
beforeEach(^{
+ testOp = nil;
resultError = nil;
hasCalledOperationCompletionHandler = NO;